* include/ctype.h: Remove stray ')'.

This commit is contained in:
Danny Smith 2006-08-03 21:05:05 +00:00
parent 079b45dc00
commit 840d9c1abe
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-08-03 Danny Smith <dannysmith@users.sourceforge.net>
* include/ctype.h: Remove stray ')';
2006-08-03 Danny Smith <dannysmith@users.sourceforge.net>
* include/ctype.h (_BLANK): Expand comment.

View File

@ -144,7 +144,7 @@ extern unsigned short** _imp___ctype;
#if ! (defined (__NO_INLINE__) || defined (__NO_CTYPE_INLINES) \
|| defined (__STRICT_ANSI__))
)
/* use simple lookup if SB locale, else _isctype() */
#define __ISCTYPE(c, mask) (MB_CUR_MAX == 1 ? (_pctype[c] & mask) : _isctype(c, mask))
__CRT_INLINE int __cdecl isalnum(int c) {return __ISCTYPE(c, (_ALPHA|_DIGIT));}