scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | 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