inetd: comment tweak. no code changes
[oweals/busybox.git] / coreutils / usleep.c
index e0cd56e542f23292a00d611b3fb7536475e520f4..e7acd5f82979b18d419ec57f9bfcb373b97075b8 100644 (file)
 
 /* 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();
        }