blob: 8f21e862a2b58966691334cbac367ad36152b44e [file] [log] [blame]
#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
}