blob: 68cdc7a46d2dcbaf83494f9b2ffb3aa1a06e2b0e [file] [log] [blame]
rscbc7cb1a2003-11-23 18:04:47 +00001#include <u.h>
2#include <libc.h>
3
4void
5main(int argc, char *argv[])
6{
7 long secs;
8
9 if(argc>1)
10 for(secs = atol(argv[1]); secs > 0; secs--)
11 sleep(1000);
12 exits(0);
13}