1 #include <stdio.h>
2 
3 static int g_var = 0;
4 
step_out_of_me()5 int step_out_of_me()
6 {
7   return g_var; // Set a breakpoint here and step out.
8 }
9 
10 int
main()11 main()
12 {
13   int result = step_out_of_me(); // Stop here first
14   return result;
15 }
16