mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
14 lines
170 B
C
14 lines
170 B
C
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
|
||
|
void
|
||
|
main(int argc, char *argv[])
|
||
|
{
|
||
|
long secs;
|
||
|
|
||
|
if(argc>1)
|
||
|
for(secs = atol(argv[1]); secs > 0; secs--)
|
||
|
sleep(1000);
|
||
|
exits(0);
|
||
|
}
|