1 #include <stdio.h>
2 #include <wchar.h>
3 
btowc(int c)4 wint_t btowc(int c)
5 {
6 	return c<128U ? c : EOF;
7 }
8