main.c
text/x-csrc
Filename: main.c
Type: text/x-csrc
Part: 5
#include <stdio.h>
#include <stdlib.h>
#include <dlfcn.h>
int main(int argc, char* argv[]) {
void *handle = dlopen("liba.so", RTLD_NOW | RTLD_GLOBAL);
if (!handle) {
fprintf(stderr, "dlopen failed: %s\n", dlerror());
}
void (*func_t)(void);
*(void **) (&func_t) = dlsym(handle, "a");
(*func_t)();
}