new definition of ISALNUM

This commit is contained in:
ceriel 1987-02-02 16:37:59 +00:00
parent 78a61585ce
commit 0a4b847f50

View 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 == '.')