xref: /llvm-project/lldb/test/API/functionalities/module_cache/bsd/b.c (revision da816ca0cb3b1367fe90b3e6fb73439c93ed80df)
1 static int __b_global = 2;
2 
b(int arg)3 int b(int arg) {
4     int result = arg + __b_global;
5     return result; // Set file and line breakpoint inside b().
6 }
7