X-Git-Url: https://git.saurik.com/apple/libc.git/blobdiff_plain/51631861ddb16afcfcf748cee26c14481549065e..fbd86d4cc20b02a10edcca92fb7ae0a143e63cc4:/internat/NXIsSpace.c?ds=sidebyside diff --git a/internat/NXIsSpace.c b/internat/NXIsSpace.c index b26c5be..24b0919 100644 --- a/internat/NXIsSpace.c +++ b/internat/NXIsSpace.c @@ -32,6 +32,6 @@ int NXIsSpace(c) { FIXSIGNEDCHAR(c); if (c < 256) - return ((unsigned int)((_NX_CTypeTable_ + 1)[c] & (_S))); + return ((unsigned int)((_NX_CTypeTable_ + 1)[c] & (_CTYPE_S))); return 0; }