brintos

brintos / llvm-project-archived public Read only

0
0
Text · 97 B · 3d6d45c Raw
9 lines · c
1#include <unistd.h>2 3int main (int argc, char **argv) {4  while(1)5    usleep(5);6 7  return 0;8}9