From 0a4b847f50336cd5a6ad3529718622b7a8fa3f6e 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 0b334c5eb..25c518fe4 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 == '.') -- 2.34.1