Update internal.h to conditionally include asm/string.h
[oweals/busybox.git] / uname.c
diff --git a/uname.c b/uname.c
index f1304925db845ac2aea80522b72d6dec6f700793..b7c88ece5f458b51375511e2299f4a105e06df8a 100644 (file)
--- a/uname.c
+++ b/uname.c
@@ -42,9 +42,9 @@
 
 
 static const char uname_usage[] =
-       "uname [OPTION]...\n\n"
+       "uname [OPTION]...\n"
 #ifndef BB_FEATURE_TRIVIAL_HELP
-       "Print certain system information.  With no OPTION, same as -s.\n\n"
+       "\nPrint certain system information.  With no OPTION, same as -s.\n\n"
        "Options:\n"
        "\t-a\tprint all information\n"
        "\t-m\tthe machine (hardware) type\n"
@@ -156,7 +156,7 @@ int uname_main(int argc, char **argv)
        print_element(PRINT_MACHINE, name.machine);
        print_element(PRINT_PROCESSOR, processor);
 
-       exit(TRUE);
+       return(TRUE);
 }
 
 /* If the name element set in MASK is selected for printing in `toprint',