aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/debugger/main.cpp
blob: 4b4ca68ab87dc0db5e0a9b66c1aa38dd5b8f3aed (plain)
1
2
3
4
5
6
7
8
9
// This simple program is to test the lldb Python API SBDebugger.

int func(int val) {
    return val - 1;
}

int main (int argc, char const *argv[]) {
    return func(argc);
}