musl-tcc/src/stdio/putwchar.c

10 lines
144 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include "stdio_impl.h"
#include <wchar.h>
wint_t putwchar(wchar_t c)
{
return fputwc(c, stdout);
}
weak_alias(putwchar, putwchar_unlocked);