aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/stdio
diff options
context:
space:
mode:
authorMarvin Borner2019-12-21 12:25:14 +0100
committerMarvin Borner2019-12-21 12:25:14 +0100
commit38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (patch)
tree759378766ee6b22d72a0f2fded1b0dd530376a6e /src/userspace/mlibc/stdio
parent07530dd08e0b29573712b54543a7fc42672bb34b (diff)
Some userspace improvements
GAS is bad, NASM is awesome.
Diffstat (limited to 'src/userspace/mlibc/stdio')
-rw-r--r--src/userspace/mlibc/stdio/readline.c4
-rw-r--r--src/userspace/mlibc/stdio/vprintf.c6
2 files changed, 4 insertions, 6 deletions
diff --git a/src/userspace/mlibc/stdio/readline.c b/src/userspace/mlibc/stdio/readline.c
index b948884..91b5da0 100644
--- a/src/userspace/mlibc/stdio/readline.c
+++ b/src/userspace/mlibc/stdio/readline.c
@@ -9,8 +9,8 @@ char *readline()
while (buf != '\n') {
buf = getch();
writec(buf);
- strcpy(ret, buf);
+ strcpy(ret, &buf);
}
- strcpy(ret, buf);
+ strcpy(ret, &buf);
return ret;
} \ No newline at end of file
diff --git a/src/userspace/mlibc/stdio/vprintf.c b/src/userspace/mlibc/stdio/vprintf.c
index 92999b6..1d43c77 100644
--- a/src/userspace/mlibc/stdio/vprintf.c
+++ b/src/userspace/mlibc/stdio/vprintf.c
@@ -1,8 +1,6 @@
#include <stdarg.h>
#include <stdint.h>
#include <mlibc/stdio.h>
-#include <mlibc/string.h>
-#include <mlibc/stdlib.h>
#include <mlibc/stdlib.h>
void __writes(const char *data)
@@ -32,12 +30,12 @@ void vprintf(const char *fmt, va_list args)
} else if (buff == 'x') {
char *p = htoa((uint32_t) va_arg(args, int));
__writes(p);
- // kfree(p);
+ free(p);
readyToFormat = 0;
} else if (buff == 'd') {
char *p = itoa(va_arg(args, int));
__writes(p);
- // kfree(p);
+ free(p);
readyToFormat = 0;
} else if (buff == 'c') {
writec((char) va_arg(args, int));