X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fgetchar.c;h=df395ca9548dc3591469e0676c334c3e362aba2d;hb=8949da7ab1c0dbf801e8bc78f0c0adc625020f75;hp=c10126581bf95d532e974fe30f6d2646a0ef8db6;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/stdio/getchar.c b/src/stdio/getchar.c index c1012658..df395ca9 100644 --- a/src/stdio/getchar.c +++ b/src/stdio/getchar.c @@ -1,6 +1,7 @@ #include +#include "getc.h" int getchar(void) { - return fgetc(stdin); + return do_getc(stdin); }