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