682074c402
Former-commit-id: 7ac8cc7c0cb6e4bc98c875e9f915257ff6eceec0 Former-commit-id: 1c89600a2f4ddda36abd895bf40e2f9a7f3ea33c
18 lines
270 B
C
18 lines
270 B
C
volatile int breakpoint_count = 0;
|
|
volatile int breakpoint_on_me() {
|
|
breakpoint_count++;
|
|
}
|
|
|
|
int main() {
|
|
int x = 1337;
|
|
for (;;) {
|
|
x += 1;
|
|
if (x == 7331) {
|
|
breakpoint_on_me();
|
|
x = 1337;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|