Home
       0110-typedefcast.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
       ---
       0110-typedefcast.c (72B)
       ---
            1 typedef int myint;
            2 myint x = (myint)1;
            3 
            4 int
            5 main(void)
            6 {
            7         return x-1;
            8 }