X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/515e94a608bae8339da80addd1dad3e57f642a1e..d772bf4341fd3573a6122e4ecc67edea511cdad1:/src/common/wxchar.cpp diff --git a/src/common/wxchar.cpp b/src/common/wxchar.cpp index e26ea1f3cb..8353277d16 100644 --- a/src/common/wxchar.cpp +++ b/src/common/wxchar.cpp @@ -1403,7 +1403,8 @@ char *strdup(const char *s) } #endif -#if (defined(__MWERKS__) && !defined(__MACH__)) || defined(__WXWINCE__) +#if (defined(__MWERKS__) && !defined(__MACH__)) || (defined(__WXWINCE__) && _WIN32_WCE <= 211) + int isascii( int c ) { return ( c >= 0 && c < 128 ); @@ -1418,8 +1419,11 @@ void *calloc( size_t num, size_t size ) return ptr; } +#if (_WIN32_WCE <= 211) int isspace(int c) { return (c == ' '); } #endif + +#endif