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

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