old-cross-binutils/gdb/testsuite/gdb.base/so-impl-ld.c
1999-01-08 23:28:15 +00:00

18 lines
329 B
C

/* This program is linked against SOM shared libraries, which the loader
automatically loads along with the program itself).
*/
#include <stdio.h>
extern int solib_main (int);
main ()
{
int result;
/* Call a shlib function. */
result = solib_main (100);
/* Call it again. */
result = solib_main (result);
}