I know this sounds weird, but put another declaration before the defines. I used this and it compiled:
int test;
#define a 13
#define b 12
#define c 11
#define d 10
#define e 9
// and on...
edit: An #include before the defines compiles ok also.
I know this sounds weird, but put another declaration before the defines. I used this and it compiled:
int test;
#define a 13
#define b 12
#define c 11
#define d 10
#define e 9
// and on...
edit: An #include before the defines compiles ok also.