scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

0171-macros.c (104B)


      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);
     10 }