Add in ifconfig and route
[oweals/busybox.git] / sleep.c
diff --git a/sleep.c b/sleep.c
index 9687b84460300917a26d743d0ce283d3992b81b5..61b7ce404ee0d637d7228555c61c10dd034ffa14 100644 (file)
--- a/sleep.c
+++ b/sleep.c
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
-
-const char sleep_usage[] = "sleep N\n\n" "Pause for N seconds.\n";
+#include <unistd.h>
+#include <stdlib.h>
 
 extern int sleep_main(int argc, char **argv)
 {
@@ -32,9 +32,7 @@ extern int sleep_main(int argc, char **argv)
                usage(sleep_usage);
        }
 
-       if (sleep(atoi(*(++argv))) != 0) {
-               perror("sleep");
-               exit(FALSE);
-       } else
-               exit(TRUE);
+       if (sleep(atoi(*(++argv))) != 0)
+               perror_msg_and_die("sleep");
+       return EXIT_SUCCESS;
 }