putwc.c (116B)
1 #include <stdio.h> 2 #include <wchar.h> 3 4 #undef putwc 5 6 wint_t 7 putwc(wchar_t wc, FILE *fp) 8 { 9 return fputwc(wc, fp); 10 }