mirror of
https://github.com/fluencelabs/musl
synced 2025-05-31 00:21:34 +00:00
9 lines
125 B
C
9 lines
125 B
C
|
#include "stdio_impl.h"
|
||
|
|
||
|
wint_t putwchar(wchar_t c)
|
||
|
{
|
||
|
return fputwc(c, stdout);
|
||
|
}
|
||
|
|
||
|
weak_alias(putwchar, putwchar_unlocked);
|