musl-tcc/src/stdio/putwchar.c
2022-03-20 16:48:53 +08:00

10 lines
144 B
C

#include "stdio_impl.h"
#include <wchar.h>
wint_t putwchar(wchar_t c)
{
return fputwc(c, stdout);
}
weak_alias(putwchar, putwchar_unlocked);