diff options
Diffstat (limited to 'src/user/lib/std/stdio.c')
-rw-r--r-- | src/user/lib/std/stdio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/user/lib/std/stdio.c b/src/user/lib/std/stdio.c index 3b24da1..63ad357 100644 --- a/src/user/lib/std/stdio.c +++ b/src/user/lib/std/stdio.c @@ -1,4 +1,5 @@ #include <stdlib.h> +#include <stdio.h> void printk_int(int number) { if (number == 0) { @@ -17,8 +18,7 @@ void printk_int(int number) { temp /= 10; } - char *s, *r; - s = malloc(order + (negative ? 2 : 1)); + char s[32], *r; if (negative) { s[0] = '-'; r = s + 1; |