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