glibc/elf/globalmod1.c
Ulrich Drepper 273a3cfb99 Update.
* elf/global.c: New file.
	* elf/globalmod1.c: New file.
	* elf/Makefile: Add rules to build and run global.
2001-03-04 19:51:54 +00:00

16 lines
276 B
C

#include <dlfcn.h>
#include <stdio.h>
int
test (void)
{
(void) dlopen ("reldepmod4.so", RTLD_LAZY | RTLD_GLOBAL);
if (dlsym (RTLD_DEFAULT, "call_me") != NULL)
{
puts ("found \"call_me\"");
return 0;
}
puts ("didn't find \"call_me\"");
return 1;
}