X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fputc.c;h=4744d978725deb765850b7922b7b7d2aa02772f1;hb=8d404733e1314ef633aa09a90865e94fe711b4ca;hp=3c9dc11eba64f63d10dbcef4a38b0f5d550b55b7;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/stdio/putc.c b/src/stdio/putc.c index 3c9dc11e..4744d978 100644 --- a/src/stdio/putc.c +++ b/src/stdio/putc.c @@ -1,8 +1,9 @@ -#include "stdio_impl.h" +#include +#include "putc.h" int putc(int c, FILE *f) { - return fputc(c, f); + return do_putc(c, f); } weak_alias(putc, _IO_putc);