summaryrefslogtreecommitdiffstats
path: root/winsup
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2006-08-03 21:05:05 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2006-08-03 21:05:05 +0000
commit840d9c1abe69cc57fdf6de8d6e59f85f0c899333 (patch)
treef27f78939e1a42ec2465b6e6df6a84212c5b4b21 /winsup
parent079b45dc00db5035925df22de0a117c6638d2496 (diff)
downloadcygnal-840d9c1abe69cc57fdf6de8d6e59f85f0c899333.tar.gz
cygnal-840d9c1abe69cc57fdf6de8d6e59f85f0c899333.tar.bz2
cygnal-840d9c1abe69cc57fdf6de8d6e59f85f0c899333.zip
* include/ctype.h: Remove stray ')'.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/mingw/ChangeLog4
-rw-r--r--winsup/mingw/include/ctype.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog
index 672262552..e60266d91 100644
--- a/winsup/mingw/ChangeLog
+++ b/winsup/mingw/ChangeLog
@@ -1,5 +1,9 @@
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.
(isblank): Add prototype and inline definition.
(iswblank): Add prototype and inline definition.
diff --git a/winsup/mingw/include/ctype.h b/winsup/mingw/include/ctype.h
index 55e78431e..c04a07bd5 100644
--- a/winsup/mingw/include/ctype.h
+++ b/winsup/mingw/include/ctype.h
@@ -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));}