| 1 | int main (int argc, char const *argv[]) |
|---|---|
| 2 | { |
| 3 | // Add a body to the function, so we can set more than one |
| 4 | // breakpoint in it. |
| 5 | static volatile int var = 0; |
| 6 | var++; |
| 7 | return 0; // Set break point at this line. |
| 8 | } |
| 9 |
| 1 | int main (int argc, char const *argv[]) |
|---|---|
| 2 | { |
| 3 | // Add a body to the function, so we can set more than one |
| 4 | // breakpoint in it. |
| 5 | static volatile int var = 0; |
| 6 | var++; |
| 7 | return 0; // Set break point at this line. |
| 8 | } |
| 9 |