aboutsummaryrefslogtreecommitdiff
path: root/coreutils/sleep.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-12 22:26:06 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-12 22:26:06 +0000
commit3cf52d19581b2077480e7d2e63010baa1f5399c1 (patch)
treed91b0cb332ebc976126e36a394655dde7a15d8b1 /coreutils/sleep.c
parent2ce1edcf544ac675e6762c9861a6b918401ea716 (diff)
downloadbusybox-3cf52d19581b2077480e7d2e63010baa1f5399c1.tar.gz
More stuff...
Diffstat (limited to 'coreutils/sleep.c')
-rw-r--r--coreutils/sleep.c21
1 files changed, 13 insertions, 8 deletions
diff --git a/coreutils/sleep.c b/coreutils/sleep.c
index e48e14b2f..53fe5a0c2 100644
--- a/coreutils/sleep.c
+++ b/coreutils/sleep.c
@@ -1,15 +1,20 @@
#include "internal.h"
#include <stdio.h>
-const char sleep_usage[] = "sleep seconds\n"
-"\n"
-"\tPause program execution for the given number of seconds.\n";
+const char sleep_usage[] = " NUMBER\n"
+"Pause for NUMBER seconds.\n";
extern int
-sleep_main(struct FileInfo * i, int argc, char * * argv)
+sleep_main(int argc, char * * argv)
{
- if ( sleep(atoi(argv[1])) != 0 )
- return -1;
- else
- return 0;
+ if ( (argc < 2) || (**(argv+1) == '-') ) {
+ fprintf(stderr, "Usage: %s %s", *argv, sleep_usage);
+ exit(FALSE);
+ }
+
+ if ( sleep(atoi(*(++argv))) != 0 ) {
+ perror( "sleep");
+ exit (FALSE);
+ } else
+ exit (TRUE);
}