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