1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-12 03:51:30 +02:00

Don't include <ctype.h> or define IS* macros since system.h now does that.

This commit is contained in:
Jim Meyering
1994-09-24 15:20:51 +00:00
parent fd16a39c69
commit fed388a533
2 changed files with 2 additions and 21 deletions
-9
View File
@@ -40,7 +40,6 @@
#endif
#include <stdio.h>
#include <ctype.h>
#include <sys/types.h>
#include <regex.h>
@@ -48,14 +47,6 @@
#include "version.h"
#include "long-options.h"
#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
#define ISASCII(c) 1
#else
#define ISASCII(c) isascii(c)
#endif
#define ISDIGIT(c) (ISASCII (c) && isdigit (c))
#define NEW(type) ((type *) xmalloc (sizeof (type)))
#define OLD(x) free ((char *) x)