amiga-ixemul/wchar/btowc.c

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;
}