1 #include "stdio_impl.h" 2 #include <wchar.h> 3 getwchar(void)4 wint_t getwchar(void) { 5 return fgetwc(stdin); 6 } 7 8 weak_alias(getwchar, getwchar_unlocked); 9