0074-undef.c - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) 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 }