scc

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