llvm-project/lldb/packages/Python/lldbsuite/test/functionalities/stop-hooks/main.c

15 lines
166 B
C

#include <stdio.h>
static int g_var = 0;
int step_out_of_me()
{
return g_var; // Set a breakpoint here and step out.
}
int
main()
{
return step_out_of_me();
}