Commit 8d68dd69 by Philippe De Muyter Committed by Jeff Law

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
parent 1bb98cec
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> 1999-11-29 David S. Miller <davem@redhat.com>
Move quantity tables and register equivalence chains into Move quantity tables and register equivalence chains into
......
...@@ -223,7 +223,7 @@ unsigned char id[256] = { ...@@ -223,7 +223,7 @@ unsigned char id[256] = {
#define END }; #define END };
#else #else
#define TABLE(id) unsigned char id[256] = { 0 }; \ #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; unsigned char *x = id;
#define s(p, v) x[p] = v; #define s(p, v) x[p] = v;
#define END } #define END }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment