(root)/
binutils-2.41/
ld/
testsuite/
ld-elfvers/
vers7.c
       1  /*
       2   * Test program that goes with test7.so
       3   */
       4  
       5  extern int hide_a();
       6  extern int show_b();
       7  
       8  int
       9  main()
      10  {
      11    return hide_a(1) + show_b(1);
      12    return 0;
      13  }