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

src/chgrp.c

index 71d0f8dec2e7501d29b4d444e346a89544329bb9..47b6ef3150464f6801c40d7b73561430eeced026 100644 (file)
@@ -19,7 +19,6 @@
 
 #include <config.h>
 #include <stdio.h>
-#include <ctype.h>
 #include <sys/types.h>
 #include <grp.h>
 #include <getopt.h>
 #include "version.h"
 #include "safe-lstat.h"
 
-#if !defined (isascii) || defined (STDC_HEADERS)
-#undef isascii
-#define isascii(c) 1
-#endif
-
-#define ISDIGIT(c) (isascii (c) && isdigit (c))
-
 #ifndef _POSIX_VERSION
 struct group *getgrnam ();
 #endif