1 #include <stdio.h> 2 3 #undef _putwc_nolock 4 wint_t __cdecl _putwc_nolock(wchar_t c, FILE *stream); _putwc_nolock(wchar_t c,FILE * stream)5 wint_t __cdecl _putwc_nolock(wchar_t c, FILE *stream) 6 { 7 return _fputwc_nolock(c, stream); 8 } 9