1 #ifndef _WCHAR_H 2 #define _WCHAR_H 3 4 #include <stddef.h> 5 6 #ifndef __WINT_TYPE__ 7 # define __WINT_TYPE__ unsigned int 8 #endif 9 typedef __WINT_TYPE__ wint_t; 10 11 #endif 12