]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/expression_command/options/main.cpp
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / expression_command / options / main.cpp
1 extern "C" int foo(void);
2 static int static_value = 0;
3
4 int
5 bar()
6 {
7     static_value++;
8     return static_value;
9 }
10
11 int main (int argc, char const *argv[])
12 {
13     bar(); // breakpoint_in_main
14     return foo();
15 }