Support for tar -z option for uncompressing only
[oweals/busybox.git] / uname.c
diff --git a/uname.c b/uname.c
index b7c88ece5f458b51375511e2299f4a105e06df8a..2781b80b3c82a5962b3b93b423bdf07d3db15ce7 100644 (file)
--- a/uname.c
+++ b/uname.c
@@ -31,7 +31,7 @@
 
 /* Busyboxed by Erik Andersen */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/utsname.h>
 # include <sys/systeminfo.h>
 #endif
 
-
-static const char uname_usage[] =
-       "uname [OPTION]...\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
-       "\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"
-       "\t-n\tprint the machine's network node hostname\n"
-       "\t-r\tprint the operating system release\n"
-       "\t-s\tprint the operating system name\n"
-
-       "\t-p\tprint the host processor type\n"
-       "\t-v\tprint the operating system version\n"
-#endif
-       ;
-
-
 static void print_element(unsigned int mask, char *element);
 
 /* Values that are bitwise or'd into `toprint'. */
@@ -156,7 +138,7 @@ int uname_main(int argc, char **argv)
        print_element(PRINT_MACHINE, name.machine);
        print_element(PRINT_PROCESSOR, processor);
 
-       return(TRUE);
+       return EXIT_SUCCESS;
 }
 
 /* If the name element set in MASK is selected for printing in `toprint',