scc

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

0171-macros.c (112B)


      1 #define X (2)
      2 #define L (0)
      3 #define H (1)
      4 #define Q(x) x
      5 
      6 int
      7 main(void)
      8 {
      9 	return X == L + H + Q(1) ? 0 : 1;
     10 }