scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | README | LICENSE

0262-macro.c (123B)


      1 #define for(...) for(__VA_ARGS__) c += 2;
      2 
      3 int
      4 main(void)
      5 {
      6 	int i, c = 0;
      7 
      8 	for (i = 0; i < 3; i++)
      9 
     10 	return !(c == 6);
     11 }