From cd3ad989210dc8a3f5805dd5d4c4a6bd74e281db Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 16 Jan 2020 17:15:53 +0100 Subject: Quite a different approach to userspace paging Hope this works soon! --- src/userspace/mlibc/stdio/printf.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (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 b582897..5617d03 100644 --- a/src/userspace/mlibc/stdio/printf.c +++ b/src/userspace/mlibc/stdio/printf.c @@ -1,14 +1,10 @@ #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(format, args); + vprintf(fmt, args); va_end(args); } \ No newline at end of file -- cgit v1.2.3