Home
       0022-typedef.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
       ---
       0022-typedef.c (57B)
       ---
            1 typedef int x;
            2 
            3 int
            4 main()
            5 {
            6         x v;
            7         v = 0;
            8         return v;
            9 }
           10