]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Define isascii macro to be 1 also if STDC_HEADERS.
authorJim Meyering <jim@meyering.net>
Thu, 1 Apr 1993 04:21:00 +0000 (04:21 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 1 Apr 1993 04:21:00 +0000 (04:21 +0000)
src/expr.c
src/printf.c

index e5f29412285bb39a681cb658d46321ccc5480312..4a1f22c5bb7571e94b7803bf7c5c8b5c76d46d0a 100644 (file)
@@ -34,7 +34,7 @@
 #include <regex.h>
 #include "system.h"
 
-#ifndef isascii
+#if !defined (isascii) || defined (STDC_HEADERS)
 #define isascii(c) 1
 #endif
 
index 1c43c077399875cf3370bd7f3efe5ded1ceea58e..99ed4939767ccdf22a0e6a9905cb4fcdf8505051 100644 (file)
@@ -48,7 +48,7 @@
 #include <sys/types.h>
 #include "system.h"
 
-#ifndef isascii
+#if !defined (isascii) || defined (STDC_HEADERS)
 #define isascii(c) 1
 #endif