main.c 228 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 #include <dlfcn.h> #include <assert.h> int main() { int i = 0; // break here // dlopen the 'other' test executable. int h = dlopen("other", RTLD_LAZY); assert(h && "dlopen failed?"); return i; // break after dlopen }