mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 03:20:05 +00:00
16 lines
276 B
C
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;
|
||
|
}
|