busybox/coreutils/sleep.c

20 lines
343 B
C
Raw Normal View History

1999-10-05 21:54:54 +05:30
#include "internal.h"
#include <stdio.h>
1999-10-13 03:56:06 +05:30
const char sleep_usage[] = " NUMBER\n"
"Pause for NUMBER seconds.\n";
1999-10-05 21:54:54 +05:30
extern int
1999-10-13 03:56:06 +05:30
sleep_main(int argc, char * * argv)
1999-10-05 21:54:54 +05:30
{
1999-10-13 03:56:06 +05:30
if ( (argc < 2) || (**(argv+1) == '-') ) {
1999-10-19 03:58:26 +05:30
usage( sleep_usage );
1999-10-13 03:56:06 +05:30
}
if ( sleep(atoi(*(++argv))) != 0 ) {
perror( "sleep");
exit (FALSE);
} else
exit (TRUE);
1999-10-05 21:54:54 +05:30
}