brintos

brintos / llvm-project-archived public Read only

0
0
Text · 177 B · 4b4ca68 Raw
10 lines · cpp
1// This simple program is to test the lldb Python API SBDebugger.2 3int func(int val) {4    return val - 1;5}6 7int main (int argc, char const *argv[]) {8    return func(argc);9}10