diff options
author | Jim Meyering <jim@meyering.net> | 1993-04-01 04:21:00 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1993-04-01 04:21:00 +0000 |
commit | 5c9a84b6104d974c067a5c82c07ede75cd659db9 (patch) | |
tree | 8f7d93b4bbbd601e1209df6c0b6edc544fb61b92 | |
parent | def996ca60014ba6ad189932d44d332e0e9a6380 (diff) | |
download | coreutils-5c9a84b6104d974c067a5c82c07ede75cd659db9.tar.xz |
Define isascii macro to be 1 also if STDC_HEADERS.
-rw-r--r-- | src/expr.c | 2 | ||||
-rw-r--r-- | src/printf.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c index e5f294122..4a1f22c5b 100644 --- a/src/expr.c +++ b/src/expr.c @@ -34,7 +34,7 @@ #include <regex.h> #include "system.h" -#ifndef isascii +#if !defined (isascii) || defined (STDC_HEADERS) #define isascii(c) 1 #endif diff --git a/src/printf.c b/src/printf.c index 1c43c0773..99ed49397 100644 --- a/src/printf.c +++ b/src/printf.c @@ -48,7 +48,7 @@ #include <sys/types.h> #include "system.h" -#ifndef isascii +#if !defined (isascii) || defined (STDC_HEADERS) #define isascii(c) 1 #endif |