brintos

brintos / llvm-project-archived public Read only

0
0
Text · 137 B · 2cdb68c Raw
16 lines · c
1#include <unistd.h>2 3int4SomethingToCall() {5  return 100;6}7 8int9main()10{11  while (1) {12    sleep(1);13  }14  return SomethingToCall();15}16