mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 07:31:53 +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);
|