blob: 500606382e9c381513b22b460f1a481186160706 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* This function is supposed to not exist. */
2extern int xyzzy (int);
3
4extern int foo (int);
5
6int
7foo (int a)
8{
9 return xyzzy (a);
10}