This commit was manufactured by cvs2svn to create branch
[external/binutils.git] / 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 }