aboutsummaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-03-23 21:04:00 +0000
committerChristopher Faylor <me@cgf.cx>2005-03-23 21:04:00 +0000
commitc6190209b38d3867516e01f51cb58073088d3a8b (patch)
tree781583f354e4241821496f162e96f54f1b8366c7 /winsup
parentfcfb011798f34a6c47b9750595d120102b066e06 (diff)
downloadnewlib-c6190209b38d3867516e01f51cb58073088d3a8b.zip
newlib-c6190209b38d3867516e01f51cb58073088d3a8b.tar.gz
newlib-c6190209b38d3867516e01f51cb58073088d3a8b.tar.bz2
* include/ctype.h: Always define macros when inside cygwin.
(isblank): New macro.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/include/ctype.h5
2 files changed, 8 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 039dc6f..b2a20b7 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-23 Christopher Faylor <cgf@timesys.com>
+
+ * include/ctype.h: Always define macros when inside cygwin.
+ (isblank): New macro.
+
2005-03-23 Corinna Vinschen <corinna@vinschen.de>
* fhandler.h (fhandler_socket::eid_connect): Make private.
diff --git a/winsup/cygwin/include/ctype.h b/winsup/cygwin/include/ctype.h
index 8e7983a..c317a30 100644
--- a/winsup/cygwin/include/ctype.h
+++ b/winsup/cygwin/include/ctype.h
@@ -40,8 +40,9 @@ int __cdecl _toupper(int);
extern const char _ctype_[];
-#ifndef __cplusplus
+#if !defined(__cplusplus) || defined(__INSIDE_CYGWIN__)
#define isalpha(c) ((_ctype_+1)[(unsigned)(c)]&(_U|_L))
+#define isblank(c) ((c) == ' ' || (c) == '\t')
#define isupper(c) ((_ctype_+1)[(unsigned)(c)]&_U)
#define islower(c) ((_ctype_+1)[(unsigned)(c)]&_L)
#define isdigit(c) ((_ctype_+1)[(unsigned)(c)]&_N)
@@ -60,7 +61,7 @@ extern const char _ctype_[];
__extension__ ({ int __x = (c); isupper(__x) ? (__x - 'A' + 'a') : __x;})
#endif /* !__cplusplus */
-#ifndef __STRICT_ANSI__
+#if !defined(__STRICT_ANSI__) || defined(__INSIDE_CYGWIN__)
#define isascii(c) ((unsigned)(c)<=0177)
#define toascii(c) ((c)&0177)
#endif