summaryrefslogtreecommitdiff
path: root/src/chgrp.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/chgrp.c
parent0f4b670f25590e80922592b9ccce85cb41113f37 (diff)
downloadcoreutils-def996ca60014ba6ad189932d44d332e0e9a6380.tar.xz
Define isascii macro to be 1 also if STDC_HEADERS.
Diffstat (limited to 'src/chgrp.c')
-rw-r--r--src/chgrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chgrp.c b/src/chgrp.c
index 3e6c82d7e..2d4fe213e 100644
--- a/src/chgrp.c
+++ b/src/chgrp.c
@@ -24,7 +24,7 @@
#include <getopt.h>
#include "system.h"
-#ifndef isascii
+#if !defined (isascii) || defined (STDC_HEADERS)
#define isascii(c) 1
#endif