diff options
author | Jim Meyering <jim@meyering.net> | 1994-12-10 05:45:02 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1994-12-10 05:45:02 +0000 |
commit | 33c44e1d1bebc7770edef2eecff6e5d2be777b4e (patch) | |
tree | af3df2a8c33d48516f6fc9c777d6989240983872 /src | |
parent | ec27c855967d08241e7c47f5f21a66feabc8dc33 (diff) | |
download | coreutils-33c44e1d1bebc7770edef2eecff6e5d2be777b4e.tar.xz |
No longer include <ctype.h>.
Remove IS* macros.
Diffstat (limited to 'src')
-rw-r--r-- | src/install.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/install.c b/src/install.c index 9ef65437f..10672234f 100644 --- a/src/install.c +++ b/src/install.c @@ -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> @@ -65,13 +64,6 @@ #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 |