1 #include <u.h> 2 #include <libc.h> 3 4 void 5 main(int argc, char *argv[]) 6 { 7 if(argc>1) 8 sleep(1000*atol(argv[1])); 9 exits(0); 10 } 11