summaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1994-09-24 15:20:51 +0000
committerJim Meyering <jim@meyering.net>1994-09-24 15:20:51 +0000
commitfed388a533273d53ae73ad70801699435cf60fdd (patch)
treeacbaff6772402fd3d3e332fe8a040fb17e70f34d /src/expr.c
parentfd16a39c69584474fe188579caafa754178d1faf (diff)
downloadcoreutils-fed388a533273d53ae73ad70801699435cf60fdd.tar.xz
Don't include <ctype.h> or define IS* macros since system.h now does that.
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/expr.c b/src/expr.c
index 719402fff..d4c7eb52f 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -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)