summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-04-01 04:12:31 +0000
committerJim Meyering <jim@meyering.net>1993-04-01 04:12:31 +0000
commitdef996ca60014ba6ad189932d44d332e0e9a6380 (patch)
tree8fb024f11d562e2d66d9d02c4f53810a023c7d80 /src/install.c
parent0f4b670f25590e80922592b9ccce85cb41113f37 (diff)
downloadcoreutils-def996ca60014ba6ad189932d44d332e0e9a6380.tar.xz
Define isascii macro to be 1 also if STDC_HEADERS.
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install.c b/src/install.c
index f0bbbbd92..4fccb8447 100644
--- a/src/install.c
+++ b/src/install.c
@@ -61,7 +61,7 @@
#include "system.h"
#include "modechange.h"
-#ifndef isascii
+#if !defined (isascii) || defined (STDC_HEADERS)
#define isascii(c) 1
#endif