fix the type of wchar_t on arm; support wchar_t varying with arch
[musl] / src / stdio / putwchar.c
1 #include "stdio_impl.h"
2
3 wint_t putwchar(wchar_t c)
4 {
5         return fputwc(c, stdout);
6 }
7
8 weak_alias(putwchar, putwchar_unlocked);