• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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)10 void fn1(struct sto1 s) {
11 }
12 
fn2(struct sto2 s)13 void fn2(struct sto2 s) {
14 }
15 
fn3(struct sto1 * s)16 void fn3(struct sto1* s) {
17 }
18 
fn4(struct sto2 * s)19 void fn4(struct sto2* s) {
20 }
21