scc

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

0074-undef.c (70B)


      1 #define X 1
      2 #undef X
      3 
      4 #ifdef X
      5 FAIL
      6 #endif
      7 
      8 int
      9 main()
     10 {
     11 	return 0;
     12 }