diff --git a/second/printf.c b/second/printf.c index 21b09e2..ac4cdbb 100644 --- a/second/printf.c +++ b/second/printf.c @@ -254,4 +254,9 @@ int puts(const char * s) return -1; } + +int putchar (int c) +{ + return console_putchar(c); +} #endif