#include #include #include int main(int argc, char **argv) { void *handle; char *error; handle = dlopen("./libpscrypto.so", RTLD_LAZY); if (!handle) { fprintf(stderr, "%s\n", dlerror()); exit(EXIT_FAILURE); } dlclose(handle); return 0; }