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