Files
clang-p2996/lldb/test/API/functionalities/dlopen_other_executable/main.c
2022-07-23 15:37:26 -07:00

11 lines
234 B
C

#include <dlfcn.h>
#include <assert.h>
int main() {
int i = 0; // break here
// dlopen the 'other' test executable.
int h = (int) dlopen("other", RTLD_LAZY);
assert(h && "dlopen failed?");
return i; // break after dlopen
}