(root)/
glibc-2.38/
elf/
failobj.c
       1  /* This function is supposed to not exist.  */
       2  extern int xyzzy (int);
       3  
       4  extern int foo (int);
       5  
       6  int
       7  foo (int a)
       8  {
       9    return xyzzy (a);
      10  }