X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Ffputwc.c;h=45ea8c23ac2bc5cb43fea7a0ad4c33ba80c94412;hb=e8dbf00a789e3b56ca6c3d88e8048b7b2c18b797;hp=292a53fb8ed46b0ae14ce609862300f402c17f1a;hpb=e3cd6c5c265cd481db6e0c5b529855d99f0bda30;p=musl diff --git a/src/stdio/fputwc.c b/src/stdio/fputwc.c index 292a53fb..45ea8c23 100644 --- a/src/stdio/fputwc.c +++ b/src/stdio/fputwc.c @@ -25,7 +25,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);