#include #include int main(){ void* handle = dlopen(NULL,RTLD_LAZY); void (*f)(void) = dlsym(handle,"catch"); f(); return 0; }