blob: 8d30098bd58722bc2d22d106321bcdd2af9c8835 [file] [log] [blame]
Andrew Kaylor52dd2232013-05-03 00:10:27 +00001#include <stdio.h>
2#include <unistd.h>
3
4int main(int argc, char const *argv[]) {
5 // Waiting to be attached by the debugger.
6 int temp = 0;
7 while (temp < 30) // Waiting to be attached...
8 {
9 sleep(1);
10 temp++;
11 }
12
13 printf("Exiting now\n");
14}