1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-15 08:15:49 +02:00

No longer include <ctype.h>.

Remove IS* macros.
This commit is contained in:
Jim Meyering
1994-12-10 05:45:02 +00:00
parent ec27c85596
commit 33c44e1d1b

View 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>
@@ -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