cppinit.c (CAT): The argument list of this macro may not contain spaces !

* cppinit.c (CAT): The argument list of this macro may not contain
        spaces !

From-SVN: r30718
This commit is contained in:
Philippe De Muyter 1999-11-30 09:36:13 +01:00 committed by Jeff Law
parent 1bb98cecc6
commit 8d68dd6975
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Nov 30 01:34:47 1999 Philippe De Muyter <phdm@macqel.be>
* cppinit.c (CAT): The argument list of this macro may not contain
spaces !
1999-11-29 David S. Miller <davem@redhat.com>
Move quantity tables and register equivalence chains into

View File

@ -223,7 +223,7 @@ unsigned char id[256] = {
#define END };
#else
#define TABLE(id) unsigned char id[256] = { 0 }; \
static void CAT(init_, id) PARAMS ((void)) { \
static void CAT(init_,id) PARAMS ((void)) { \
unsigned char *x = id;
#define s(p, v) x[p] = v;
#define END }