Wrap a table (bg set to black, width=80%) around the screenshot
[oweals/busybox.git] / usleep.c
index 34008a638aab4fe683a209c1910a3c4a4697d268..86dc0501b71b41b0448037744dfa36b5bc6ccba2 100644 (file)
--- a/usleep.c
+++ b/usleep.c
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdlib.h>
 #include <unistd.h>
 
-const char usleep_usage[] = "usleep N\n" 
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\nPause for N microseconds.\n"
-#endif
-       ;
-
 extern int usleep_main(int argc, char **argv)
 {
        if ((argc < 2) || (**(argv + 1) == '-')) {
@@ -38,5 +32,5 @@ extern int usleep_main(int argc, char **argv)
        }
 
        usleep(atoi(*(++argv)));        /* return void */
-       exit(TRUE);
+       return EXIT_SUCCESS;
 }