summaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
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)