1extern LLDB_DYLIB_IMPORT int b_function();
2
3int a_init()
4{
5 return 234;
6}
7
8int a_global = a_init();
9
10extern "C" int
11a_function ()
12{
13 return b_function ();
14}
15

source code of lldb/test/API/functionalities/load_unload/a.cpp