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