0073-ifndef.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
       ---
       0073-ifndef.c (92B)
       ---
            1 #ifndef DEF
            2 int x = 0;
            3 #endif
            4 
            5 #define DEF
            6 
            7 #ifndef DEF
            8 X
            9 #endif
           10 
           11 int
           12 main()
           13 {
           14         return x;
           15 }