aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities/module_cache/bsd/c.c
blob: fe7e3ae2d44b566560eda909fcb05c9fe9827f53 (plain)
1
2
3
4
5
6
static int __c_global = 3;

int c(int arg) {
    int result = arg + __c_global;
    return result; // Set file and line breakpoint inside c().
}