- add libbb function str_tolower to convert a string to lowercase.
[oweals/busybox.git] / coreutils / usleep.c
index 90ddc5a576bae3130b6a2dbe33eb56a912756994..7dd91463811e67f8e573d3d1a3e100b0d78344da 100644 (file)
 #include <unistd.h>
 #include "busybox.h"
 
+int usleep_main(int argc, char **argv);
 int usleep_main(int argc, char **argv)
 {
        if (argc != 2) {
                bb_show_usage();
        }
 
-       if (usleep(bb_xgetularg10_bnd(argv[1], 0, UINT_MAX))) {
+       if (usleep(xatou(argv[1]))) {
                bb_perror_nomsg_and_die();
        }