tar: support -T - and -X -
[oweals/busybox.git] / miscutils / runlevel.c
index 6e10d9cbb130c2485e04843818ca7108b0a49cce..7024361e780c97d4a0b9dc6df4319cccea765293 100644 (file)
@@ -1,27 +1,25 @@
 /* vi: set sw=4 ts=4: */
 /*
- * runlevel    Prints out the previous and the current runlevel.
+ * Prints out the previous and the current runlevel.
  *
- * Version:    @(#)runlevel  1.20  16-Apr-1997  MvS
+ * Version: @(#)runlevel  1.20  16-Apr-1997  MvS
  *
- *             This file is part of the sysvinit suite,
- *             Copyright 1991-1997 Miquel van Smoorenburg.
+ * This file is part of the sysvinit suite,
+ * Copyright 1991-1997 Miquel van Smoorenburg.
  *
- * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  *
  * initially busyboxified by Bernhard Reutner-Fischer
  */
-
-#include <utmp.h>
 #include "libbb.h"
 
 int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
-int runlevel_main(int argc, char **argv)
+int runlevel_main(int argc UNUSED_PARAM, char **argv)
 {
        struct utmp *ut;
        char prev;
 
-       if (argc > 1) utmpname(argv[1]);
+       if (argv[1]) utmpname(argv[1]);
 
        setutent();
        while ((ut = getutent()) != NULL) {