1 extern int f();
2 
g()3 void g() {
4   int y = 14;
5   int x = f();
6 }
7 
main()8 int main() {
9   g();
10   return 0;
11 }
12