Thought of another janitorial item for the list.
[oweals/busybox.git] / usleep.c
index 69790ef090bc6efc6882b4633c5e14bb341fc241..92e4437c5d0194c2079d7c78024090c106198a38 100644 (file)
--- a/usleep.c
+++ b/usleep.c
  *
  */
 
-#include "busybox.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;
 }