bolt/deps/llvm-18.1.8/lldb/test/API/lang/mixed/main.c

16 lines
200 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
int foo(void);
static int static_value = 0;
int
bar()
{
static_value++;
return static_value;
}
int main (int argc, char const *argv[])
{
bar(); // breakpoint_in_main
return foo();
}