Wrap a table (bg set to black, width=80%) around the screenshot
[oweals/busybox.git] / usleep.c
index fcdf3bbf66c7f53ea851874e48245cb35001ac5b..86dc0501b71b41b0448037744dfa36b5bc6ccba2 100644 (file)
--- a/usleep.c
+++ b/usleep.c
@@ -21,7 +21,7 @@
  *
  */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdlib.h>
 #include <unistd.h>
 
@@ -32,5 +32,5 @@ extern int usleep_main(int argc, char **argv)
        }
 
        usleep(atoi(*(++argv)));        /* return void */
-       return(TRUE);
+       return EXIT_SUCCESS;
 }