X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fsleep.c;h=3bcab88ee776469f8cdaab7e9180d5672acceaa4;hb=6aabfd5e30087bb0ffdb6404aa6d650014de2dc0;hp=10eca593e0f180f546645d17fe149729a8d6b201;hpb=a9819b290848e0a760f3805d5937fa050235d707;p=oweals%2Fbusybox.git diff --git a/coreutils/sleep.c b/coreutils/sleep.c index 10eca593e..3bcab88ee 100644 --- a/coreutils/sleep.c +++ b/coreutils/sleep.c @@ -21,13 +21,15 @@ * */ -#include "busybox.h" #include +#include +#include +#include "busybox.h" extern int sleep_main(int argc, char **argv) { if ((argc < 2) || (**(argv + 1) == '-')) { - usage(sleep_usage); + show_usage(); } if (sleep(atoi(*(++argv))) != 0)