Added some more '/* getopt not needed */' lines.
[oweals/busybox.git] / usleep.c
index fcdf3bbf66c7f53ea851874e48245cb35001ac5b..92e4437c5d0194c2079d7c78024090c106198a38 100644 (file)
--- a/usleep.c
+++ b/usleep.c
  *
  */
 
-#include "internal.h"
 #include <stdlib.h>
 #include <unistd.h>
+#include "busybox.h"
 
 extern int usleep_main(int argc, char **argv)
 {
        if ((argc < 2) || (**(argv + 1) == '-')) {
-               usage(usleep_usage);
+               show_usage();
        }
 
        usleep(atoi(*(++argv)));        /* return void */
-       return(TRUE);
+       return EXIT_SUCCESS;
 }