find: support -HLP
[oweals/busybox.git] / console-tools / setlogcons.c
index 52d2608aa7cef36b59760c196f376b121952be33..c76a5a42b164d7567309bec13ec75cd3dc199530 100644 (file)
@@ -9,6 +9,11 @@
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 
+//usage:#define setlogcons_trivial_usage
+//usage:       "N"
+//usage:#define setlogcons_full_usage "\n\n"
+//usage:       "Redirect the kernel output to console N (0 for current)"
+
 #include "libbb.h"
 
 int setlogcons_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
@@ -17,9 +22,10 @@ int setlogcons_main(int argc UNUSED_PARAM, char **argv)
        struct {
                char fn;
                char subarg;
-       } arg = { 11, /* redirect kernel messages */
-                         0   /* to specified console (current as default) */
-                       };
+       } arg = {
+               11, /* redirect kernel messages */
+               0   /* to specified console (current as default) */
+       };
 
        if (argv[1])
                arg.subarg = xatou_range(argv[1], 0, 63);