glibc/elf/unload6mod1.c
Jakub Jelinek 0ecb606cb6 2.5-18.1
2007-07-12 18:26:36 +00:00

17 lines
231 B
C

#include <dlfcn.h>
#include <stdio.h>
int
foo (int i)
{
void *h = dlopen ("unload6mod2.so", RTLD_LAZY);
if (h == NULL)
{
puts ("dlopen unload6mod2.so failed");
return 1;
}
dlclose (h);
return i + 8;
}