xref: /llvm-project/lldb/test/API/functionalities/load_unload/b.cpp (revision e0dbd025131c4d77d8a5050a91d391d950529a8c)

b_init()1 int b_init()
2 {
3     return 345;
4 }
5 
6 int b_global = b_init();
7 
b_function()8 int LLDB_DYLIB_EXPORT b_function() { return 500; }
9