typedef struct { int a,b,c,d,e,f,g; } L; extern L bar(); extern L baz(L z); void foo(int x) { baz(bar()); baz(bar()); }