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