Home
       0136-if.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0136-if.c (181B)
       ---
            1 int c;
            2 
            3 int
            4 main()
            5 {
            6         if(0) {
            7                 return 1;
            8         } else if(0) {
            9                 /* empty */
           10         } else {
           11                 if(1) {
           12                         if(c)
           13                                 return 1;
           14                         else
           15                                 return 0;
           16                 } else {
           17                         return 1;
           18                 }
           19         }
           20         return 1;
           21 }