1 struct x { int a, b, c; };
2 
3 extern struct x a ();
4 extern void b (struct x);
5 
6 void
foo()7 foo ()
8 {
9   a ();
10   b (a ());
11 }
12