1 #include "stdio_impl.h"
2 #include <wchar.h>
3 
putwc(wchar_t c,FILE * f)4 wint_t putwc(wchar_t c, FILE* f) {
5     return fputwc(c, f);
6 }
7