diff options
Diffstat (limited to 'userland/libc/stdio/putchar.c')
-rw-r--r-- | userland/libc/stdio/putchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/stdio/putchar.c b/userland/libc/stdio/putchar.c index 3fcf7ca..7db6125 100644 --- a/userland/libc/stdio/putchar.c +++ b/userland/libc/stdio/putchar.c @@ -2,6 +2,6 @@ #include <unistd.h> int putchar(int c) { - printf("%c", (char)c); + write(1, (char *)&c, 1); return c; } |