1#include <stdio.h>
2
3extern "C" int a_function();
4extern "C" int c_function();
5extern "C" int b_function();
6extern "C" int d_function();
7
8int main() {
9 a_function();
10 b_function();
11 c_function();
12 d_function();
13
14 puts(s: "running"); // breakpoint here
15 return 0;
16}
17

source code of lldb/test/API/functionalities/target-new-solib-notifications/main.cpp