added a non-wide ctypes.h

This commit is contained in:
Morten Delenk 2016-07-27 15:04:16 +02:00
parent 1c3b33746e
commit 1035b176c7
No known key found for this signature in database
GPG key ID: 3F818D0F65DCB490

View file

@ -1,6 +1,5 @@
#include <ctype.h>
#include "_ctype.h"
extern "C" isascii(int c) {
assert(c<256);
return c >= 0 && c < 128;
}