1 /* This function is supposed to not exist. */ 2 extern int xyzzy (int); 3 4 extern int foo (int); 5 6 int foo(int a)7 foo (int a) 8 { 9 return xyzzy (a); 10 } 11