brintos

brintos / llvm-project-archived public Read only

0
0
Text · 149 B · 9393084 Raw
13 lines · c
1#include <stdio.h>2#include <unistd.h>3 4int5main()6{7  while (1) {8    sleep(1); // Set a breakpoint here9    printf("I slept\n");10  }11  return 0;12}13