1 typedef _Complex double S;
2 S bar (void);
3 void quux (S, S);
foo(void)4 void foo (void)
5 {
6  quux (bar(), bar());
7 }
8