]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
No longer include <ctype.h>.
authorJim Meyering <jim@meyering.net>
Sat, 10 Dec 1994 05:45:02 +0000 (05:45 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 10 Dec 1994 05:45:02 +0000 (05:45 +0000)
Remove IS* macros.

src/install.c

index 9ef65437f77233de3b59038668175fdadf02eb2c..10672234f115ae3e16f2f37560380e6f70372ac4 100644 (file)
@@ -55,7 +55,6 @@
 #include <config.h>
 #include <stdio.h>
 #include <getopt.h>
-#include <ctype.h>
 #include <sys/types.h>
 #include <pwd.h>
 #include <grp.h>
 #include "modechange.h"
 #include "makepath.h"
 
-#if !defined (isascii) || defined (STDC_HEADERS)
-#undef isascii
-#define isascii(c) 1
-#endif
-
-#define ISDIGIT(c) (isascii (c) && isdigit (c))
-
 #ifdef _POSIX_VERSION
 #include <sys/wait.h>
 #else