From 1f938811003238f26c4e34153c13ef43ff0fcca9 Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 2 Feb 1987 16:37:59 +0000 Subject: [PATCH] new definition of ISALNUM --- mach/z80/as/mach0.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mach/z80/as/mach0.c b/mach/z80/as/mach0.c index 0b334c5e..25c518fe 100644 --- a/mach/z80/as/mach0.c +++ b/mach/z80/as/mach0.c @@ -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 == '.')