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