diff options
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/system.h b/gcc/system.h index 7538071..aa44c1d 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -83,7 +83,7 @@ extern int fputs_unlocked PROTO ((const char *, FILE *)); character >= 128 which gets sign-extended to a negative value. The macro ISUPPER protects against this as well." */ -#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII)) +#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII)) || defined(HOST_EBCDIC) # define IN_CTYPE_DOMAIN(c) 1 #else # define IN_CTYPE_DOMAIN(c) isascii(c) @@ -121,7 +121,6 @@ extern int fputs_unlocked PROTO ((const char *, FILE *)); host does not conform to Posix. */ #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) - #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif |