diff options
Diffstat (limited to 'applets')
-rw-r--r-- | applets/busybox.c | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/applets/busybox.c b/applets/busybox.c index a92ddbd0e..53eb363ac 100644 --- a/applets/busybox.c +++ b/applets/busybox.c | |||
@@ -2,19 +2,9 @@ | |||
2 | /* | 2 | /* |
3 | * BusyBox' main applet dispatcher. | 3 | * BusyBox' main applet dispatcher. |
4 | * | 4 | * |
5 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 5 | * Licensed under GPLv2, see file LICENSE in this tarball for details. |
6 | */ | 6 | */ |
7 | #include "busybox.h" | 7 | #include "busybox.h" |
8 | #include <stdio.h> | ||
9 | #include <string.h> | ||
10 | #include <unistd.h> | ||
11 | #include <errno.h> | ||
12 | #include <stdlib.h> | ||
13 | #if ENABLE_LOCALE_SUPPORT | ||
14 | #include <locale.h> | ||
15 | #else | ||
16 | #define setlocale(x,y) | ||
17 | #endif | ||
18 | 8 | ||
19 | const char *bb_applet_name ATTRIBUTE_EXTERNALLY_VISIBLE; | 9 | const char *bb_applet_name ATTRIBUTE_EXTERNALLY_VISIBLE; |
20 | 10 | ||
@@ -128,7 +118,9 @@ int busybox_main(int argc, char **argv) | |||
128 | output_width -= 20; | 118 | output_width -= 20; |
129 | } else output_width = 60; | 119 | } else output_width = 60; |
130 | 120 | ||
131 | printf("%s\n\n" | 121 | printf("%s\n" |
122 | "Copyright (C) 1998-2006 Erik Andersen, Rob Landley, and others.\n" | ||
123 | "Licensed under GPLv2. See source distribution for full notice.\n\n" | ||
132 | "Usage: busybox [function] [arguments]...\n" | 124 | "Usage: busybox [function] [arguments]...\n" |
133 | " or: [function] [arguments]...\n\n" | 125 | " or: [function] [arguments]...\n\n" |
134 | "\tBusyBox is a multi-call binary that combines many common Unix\n" | 126 | "\tBusyBox is a multi-call binary that combines many common Unix\n" |