aboutsummaryrefslogtreecommitdiff
path: root/uname.c
diff options
context:
space:
mode:
Diffstat (limited to 'uname.c')
-rw-r--r--uname.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/uname.c b/uname.c
index 9a1cb808a..f1304925d 100644
--- a/uname.c
+++ b/uname.c
@@ -43,6 +43,7 @@
43 43
44static const char uname_usage[] = 44static const char uname_usage[] =
45 "uname [OPTION]...\n\n" 45 "uname [OPTION]...\n\n"
46#ifndef BB_FEATURE_TRIVIAL_HELP
46 "Print certain system information. With no OPTION, same as -s.\n\n" 47 "Print certain system information. With no OPTION, same as -s.\n\n"
47 "Options:\n" 48 "Options:\n"
48 "\t-a\tprint all information\n" 49 "\t-a\tprint all information\n"
@@ -52,7 +53,9 @@ static const char uname_usage[] =
52 "\t-s\tprint the operating system name\n" 53 "\t-s\tprint the operating system name\n"
53 54
54 "\t-p\tprint the host processor type\n" 55 "\t-p\tprint the host processor type\n"
55 "\t-v\tprint the operating system version\n"; 56 "\t-v\tprint the operating system version\n"
57#endif
58 ;
56 59
57 60
58static void print_element(unsigned int mask, char *element); 61static void print_element(unsigned int mask, char *element);