1 | static int __c_global = 3; |
---|---|
2 | |
3 | int c(int arg) { |
4 | int result = arg + __c_global; |
5 | return result; // Set file and line breakpoint inside c(). |
6 | } |
7 |
1 | static int __c_global = 3; |
---|---|
2 | |
3 | int c(int arg) { |
4 | int result = arg + __c_global; |
5 | return result; // Set file and line breakpoint inside c(). |
6 | } |
7 |