summaryrefslogtreecommitdiff
path: root/gcc/tradcpp.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tradcpp.h')
-rw-r--r--gcc/tradcpp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/tradcpp.h b/gcc/tradcpp.h
index b646939528e..f4c9ff34e3d 100644
--- a/gcc/tradcpp.h
+++ b/gcc/tradcpp.h
@@ -36,7 +36,9 @@ extern struct hashnode *lookup PARAMS ((const unsigned char *, int, int));
extern int parse_c_expression PARAMS ((const char *)); /* in tradcif.y */
extern int test_assertion PARAMS ((unsigned char **));
-/* some external tables of character types */
-extern unsigned char is_idstart[], is_idchar[];
+#define is_idchar(x) ISIDNUM(x)
+#define is_idstart(x) ISIDST(x)
+#define is_space(x) ISSPACE(x)
+#define is_nvspace(x) IS_NVSPACE(x)
#endif /* ! _TRADCPP_H_ */