summaryrefslogtreecommitdiff
path: root/src/install.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1994-12-10 05:45:02 +0000
committerJim Meyering <jim@meyering.net>1994-12-10 05:45:02 +0000
commit33c44e1d1bebc7770edef2eecff6e5d2be777b4e (patch)
treeaf3df2a8c33d48516f6fc9c777d6989240983872 /src/install.c
parentec27c855967d08241e7c47f5f21a66feabc8dc33 (diff)
downloadcoreutils-33c44e1d1bebc7770edef2eecff6e5d2be777b4e.tar.xz
No longer include <ctype.h>.
Remove IS* macros.
Diffstat (limited to 'src/install.c')
-rw-r--r--src/install.c8
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