musl/src/stdio/putwchar.c
2011-02-12 00:22:29 -05:00

9 lines
125 B
C

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