(EM_*): Synch with official list.
[glibc.git] / elf / globalmod1.c
blob778a558746b69ad75a0d4fdccfa0dd6ba88efaa0
1 #include <dlfcn.h>
2 #include <stdio.h>
4 int
5 test (void)
7 (void) dlopen ("reldepmod4.so", RTLD_LAZY | RTLD_GLOBAL);
8 if (dlsym (RTLD_DEFAULT, "call_me") != NULL)
10 puts ("found \"call_me\"");
11 return 0;
13 puts ("didn't find \"call_me\"");
14 return 1;