X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Ffputwc.c;h=7b621dd2ff9a868cd08e3beeeff3f53887dc89d7;hb=b0302863a36ef6ad24bd25e3ef4df74b9a56980d;hp=292a53fb8ed46b0ae14ce609862300f402c17f1a;hpb=e3cd6c5c265cd481db6e0c5b529855d99f0bda30;p=musl diff --git a/src/stdio/fputwc.c b/src/stdio/fputwc.c index 292a53fb..7b621dd2 100644 --- a/src/stdio/fputwc.c +++ b/src/stdio/fputwc.c @@ -1,4 +1,7 @@ #include "stdio_impl.h" +#include +#include +#include wint_t __fputwc_unlocked(wchar_t c, FILE *f) { @@ -25,7 +28,7 @@ wint_t fputwc(wchar_t c, FILE *f) FLOCK(f); c = __fputwc_unlocked(c, f); FUNLOCK(f); - return 0; + return c; } weak_alias(__fputwc_unlocked, fputwc_unlocked);