1 // See comments in -v1.c file. 2 struct sto1 { 3 int x; 4 }; 5 6 struct sto2 { 7 long x; 8 }; 9 fn1(struct sto1 s)10void fn1(struct sto1 s) { 11 } 12 fn2(struct sto2 s)13void fn2(struct sto2 s) { 14 } 15 fn3(struct sto1 * s)16void fn3(struct sto1* s) { 17 } 18 fn4(struct sto2 * s)19void fn4(struct sto2* s) { 20 } 21