scc

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

0070-cppif.c (114B)


      1 #if 1
      2 int x = 0;
      3 #endif
      4 
      5 #if 0
      6 int x = 1;
      7 #if 1
      8  X
      9 #endif
     10 #ifndef AAA
     11  X
     12 #endif
     13 #endif
     14 
     15 int main()
     16 {
     17 	return x;
     18 }