Home
       0099-tentative.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
       ---
       0099-tentative.c (79B)
       ---
            1 int x, x = 3, x;
            2 
            3 int
            4 main()
            5 {
            6         if (x != 3)
            7                 return 0;
            8 
            9         x = 0;
           10         return x;
           11 }
           12