1static int __b_global = 2;
2
3int b(int arg) {
4 int result = arg + __b_global;
5 return result; // Set file and line breakpoint inside b().
6}
7

source code of lldb/test/API/functionalities/module_cache/bsd/b.c