blob: d08ad14776b5adc373d275845484097067982fde (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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();
}
|