URI: 
       0272-div.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       0272-div.c (129B)
       ---
            1 double g = 3.0;
            2 
            3 int
            4 main(void)
            5 {
            6         float f;
            7         double d;
            8 
            9         f = g / 4;
           10         d = g / 3;
           11 
           12         if (f == 0 || f == 0)
           13                 return 1;
           14         return 0;
           15 }