new definition of ISALNUM
authorceriel <none@none>
Mon, 2 Feb 1987 16:37:59 +0000 (16:37 +0000)
committerceriel <none@none>
Mon, 2 Feb 1987 16:37:59 +0000 (16:37 +0000)
mach/z80/as/mach0.c

index 0b334c5..25c518f 100644 (file)
@@ -6,3 +6,6 @@
 #define        THREE_PASS              /* distinguish short and long branches */
 #define        LISTING                 /* enable listing facilities */
 #define RELOCATION
+
+#undef ISALNUM
+#define ISALNUM(c)     (isalnum(c) || c == '_' || c == '.')