X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fputchar.c;h=f044f16973b5748077b1536704cf322c94711ad8;hb=54316a52b2119edf73e274c8b4f25d7757f7b4d3;hp=945636d5e66288cd23da8b4b5fb2390ec6583fa8;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl 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 +#include "putc.h" int putchar(int c) { - return fputc(c, stdout); + return do_putc(c, stdout); }