mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix fputwc return value
This commit is contained in:
parent
0161244784
commit
52458cfa8c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue