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 e5f2941..4a1f22c 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 1c43c07..99ed493 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