X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=usleep.c;h=6023bf430db3f05cb339bcefebcf3ebf010e9afd;hb=e5f39576650933770153e82c63a46f27fcd72b0e;hp=69790ef090bc6efc6882b4633c5e14bb341fc241;hpb=3570a34de46b1f7dedd16999bb1687e2d6b55d40;p=oweals%2Fbusybox.git diff --git a/usleep.c b/usleep.c index 69790ef09..6023bf430 100644 --- a/usleep.c +++ b/usleep.c @@ -21,16 +21,18 @@ * */ -#include "busybox.h" +/* getopt not needed */ + #include #include +#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; }