scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

0089-short.c (83B)


      1 int
      2 main()
      3 {
      4 	short x;
      5 	
      6 	x = 0;
      7 	x = x + 1;
      8 	if (x != 1)
      9 		return 1;
     10 	return 0;
     11 }