Files
2015-04-16 09:16:48 +02:00

11 lines
123 B
C

#define _KERNEL
#include <wchar.h>
#include <stdio.h>
#undef btowc
wint_t btowc(int c)
{
return c & ~0x7f ? WEOF : c;
}