diff options
Diffstat (limited to 'src/stdio/putchar.c')
-rw-r--r-- | src/stdio/putchar.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stdio/putchar.c b/src/stdio/putchar.c index 945636d5..f044f169 100644 --- a/src/stdio/putchar.c +++ b/src/stdio/putchar.c @@ -1,6 +1,7 @@ #include <stdio.h> +#include "putc.h" int putchar(int c) { - return fputc(c, stdout); + return do_putc(c, stdout); } |