You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
231 B

#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;
}