From 84a8b41f4d4c444385e0d7ef058a57af07f0c2e1 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 6 Jan 2020 00:06:45 +0100 Subject: Usermode based allocating works a bit now *a bit* --- src/userspace/mlibc/stdio/printf.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/userspace/mlibc/stdio/printf.c') diff --git a/src/userspace/mlibc/stdio/printf.c b/src/userspace/mlibc/stdio/printf.c index 5617d03..b582897 100644 --- a/src/userspace/mlibc/stdio/printf.c +++ b/src/userspace/mlibc/stdio/printf.c @@ -1,10 +1,14 @@ #include #include +#include +#include void printf(const char *fmt, ...) { + char *format = (char *) malloc(strlen(fmt)); + strcpy(format, fmt); va_list args; va_start(args, fmt); - vprintf(fmt, args); + vprintf(format, args); va_end(args); } \ No newline at end of file -- cgit v1.2.3