Home
       0023-global.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
       ---
       0023-global.c (43B)
       ---
            1 int x;
            2 
            3 int
            4 main()
            5 {
            6         x = 0;
            7         return x;
            8 }
            9