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