(root)/
binutils-2.41/
ld/
testsuite/
ld-ifunc/
pr18841a.c
       1  #include <stdio.h>
       2  
       3  extern void test(void);
       4  
       5  void zoo(){}
       6  
       7  int main()
       8  {
       9    test();
      10    printf("OK\n");
      11    return 0;
      12  }