1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-26 10:39:01 +02:00

No longer include <ctype.h>.

[isascii, ISDIGIT]: Remove definitions.
This commit is contained in:
Jim Meyering
1994-12-10 05:45:52 +00:00
parent 33c44e1d1b
commit abdf594b85
-8
View File
@@ -19,7 +19,6 @@
#include <config.h>
#include <stdio.h>
#include <ctype.h>
#include <sys/types.h>
#include <grp.h>
#include <getopt.h>
@@ -27,13 +26,6 @@
#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