xref: /llvm-project/lldb/test/API/functionalities/load_unload/a.cpp (revision e0dbd025131c4d77d8a5050a91d391d950529a8c)
1 extern LLDB_DYLIB_IMPORT int b_function();
2 
a_init()3 int a_init()
4 {
5     return 234;
6 }
7 
8 int a_global = a_init();
9 
10 extern "C" int
a_function()11 a_function ()
12 {
13     return b_function ();
14 }
15