glibc/elf/origtest.c
Ulrich Drepper a850e77f3f Update.
* elf/loadfail.c: Little cosmetic changes to avoid warnings.
	* elf/loadtest.c: Likewise.
	* elf/multiload.c: Likewise.
	* elf/next.c: Likewise.
	* elf/nodelete.c: Likewise.
	* elf/noload.c: Likewise.
	* elf/order.c: Likewise.
	* elf/origtest.c: Likewise.
	* elf/preloadtest.c: Likewise.
	* elf/restest1.c: Likewise.
2000-11-26 06:18:02 +00:00

40 lines
683 B
C

#include <dlfcn.h>
#include <error.h>
#include <stdio.h>
#include <stdlib.h>
int
main (void)
{
void *h;
int (*fp) (int);
int res;
h = dlopen ("${ORIGIN}/testobj1.so", RTLD_LAZY);
if (h == NULL)
error (EXIT_FAILURE, 0, "while loading `%s': %s", "testobj1.so",
dlerror ());
fp = dlsym (h, "obj1func1");
if (fp == NULL)
error (EXIT_FAILURE, 0, "getting `obj1func1' in `%s': %s",
"testobj1.so", dlerror ());
res = fp (10);
printf ("fp(10) = %d\n", res);
if (dlclose (h) != 0)
error (EXIT_FAILURE, 0, "while close `%s': %s",
"testobj1.so", dlerror ());
return res != 42;
}
extern int foo (int a);
int
foo (int a)
{
return a + 10;
}