Home
       0171-macros.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR 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 }