ps: conditionally enable -T on non-DESKTOP build too
[oweals/busybox.git] / miscutils / runlevel.c
index 0aabfb024e38ce8549dee87e523a05b93c9ef739..6e10d9cbb130c2485e04843818ca7108b0a49cce 100644 (file)
@@ -9,13 +9,13 @@
  *
  * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
  *
- * initially busyboxified by Bernhard Fischer
+ * initially busyboxified by Bernhard Reutner-Fischer
  */
 
 #include <utmp.h>
 #include "libbb.h"
 
-int runlevel_main(int argc, char **argv);
+int runlevel_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int runlevel_main(int argc, char **argv)
 {
        struct utmp *ut;
@@ -36,7 +36,7 @@ int runlevel_main(int argc, char **argv)
        }
 
        puts("unknown");
-       
+
        if (ENABLE_FEATURE_CLEAN_UP)
                endutent();
        return 1;