| 1 | #include <stdio.h> |
|---|---|
| 2 | #include <unistd.h> |
| 3 | |
| 4 | int |
| 5 | main() |
| 6 | { |
| 7 | while (1) { |
| 8 | sleep(seconds: 1); // Set a breakpoint here |
| 9 | printf(format: "I slept\n"); |
| 10 | } |
| 11 | return 0; |
| 12 | } |
| 13 |
| 1 | #include <stdio.h> |
|---|---|
| 2 | #include <unistd.h> |
| 3 | |
| 4 | int |
| 5 | main() |
| 6 | { |
| 7 | while (1) { |
| 8 | sleep(seconds: 1); // Set a breakpoint here |
| 9 | printf(format: "I slept\n"); |
| 10 | } |
| 11 | return 0; |
| 12 | } |
| 13 |