scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0024-typedefstruct.c (102B)


      1 typedef struct { int x; int y; } s;
      2 
      3 s v;
      4 
      5 int
      6 main()
      7 {
      8 	v.x = 1;
      9 	v.y = 2;
     10 	return 3 - v.x - v.y;
     11 }
     12