scc

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

0261-macro.c (116B)


      1 #define A(sizeof) sizeof(c)
      2 
      3 int
      4 f(int a)
      5 {
      6 	return a + 1;
      7 }
      8 
      9 int
     10 main(void)
     11 {
     12 	int c = 0;
     13 
     14 	return !(A(f) == 1);
     15 }