summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-elfvers/vers7.c
blob: 54316c9242978b087b65c3dce9ceaf804ef25979 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Test program that goes with test7.so
 */

extern int hide_a();
extern int show_b();

int
main()
{
  return hide_a(1) + show_b(1);
  return 0;
}