Retro68/binutils/ld/testsuite/ld-elfvers/vers7.c

14 lines
150 B
C
Raw Normal View History

2012-03-26 19:18:29 +00:00
/*
* 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;
}