mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
bc7cb1a15a
the .C files compile but are renamed to avoid building automatically.
13 lines
170 B
C
13 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);
|
|
}
|