scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | 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