]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / api / multiple-debuggers / testprog.cpp
1 int bar ()
2 {
3     return 5;
4 }
5 int foo ()
6 {
7     return bar() + 5;
8 }
9 int main ()
10 {
11     return foo();
12 }