inetd: comment tweak. no code changes
[oweals/busybox.git] / coreutils / usleep.c
index 2baf2bc87e9b6e011f5d5a13199db48d5e406d2d..e7acd5f82979b18d419ec57f9bfcb373b97075b8 100644 (file)
@@ -9,14 +9,14 @@
 
 /* BB_AUDIT SUSv3 N/A -- Apparently a busybox extension. */
 
-#include "busybox.h"
+#include "libbb.h"
 
 /* This is a NOFORK applet. Be very careful! */
 
-int usleep_main(int argc, char **argv);
-int usleep_main(int argc, char **argv)
+int usleep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
+int usleep_main(int argc UNUSED_PARAM, char **argv)
 {
-       if (argc != 2) {
+       if (!argv[1]) {
                bb_show_usage();
        }