From: ceriel Date: Mon, 2 Feb 1987 16:37:59 +0000 (+0000) Subject: new definition of ISALNUM X-Git-Tag: release-5-5~4813 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=0a4b847f50336cd5a6ad3529718622b7a8fa3f6e;p=ack.git new definition of ISALNUM --- 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 == '.')