diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-05-12 19:41:47 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-05-12 19:41:47 +0000 |
commit | 7ab9c7ee52db8759d457819f5480378fa3aa97cc (patch) | |
tree | 37ef0fb8b142a4925b866c7caa5207b71b4ecae6 /messages.c | |
parent | 3d427ac5efd249dc25dd03deb30520335f68911a (diff) | |
download | busybox-w32-7ab9c7ee52db8759d457819f5480378fa3aa97cc.tar.gz busybox-w32-7ab9c7ee52db8759d457819f5480378fa3aa97cc.tar.bz2 busybox-w32-7ab9c7ee52db8759d457819f5480378fa3aa97cc.zip |
Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELP
which lets you compile out most of the "--help" output, saving
up to 17k.
Renamed mnc to nc.
-Erik
Diffstat (limited to 'messages.c')
-rw-r--r-- | messages.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/messages.c b/messages.c index 305bcdb71..73d64276d 100644 --- a/messages.c +++ b/messages.c | |||
@@ -26,6 +26,13 @@ | |||
26 | * Perhaps this will make it simpler to internationalize also, and | 26 | * Perhaps this will make it simpler to internationalize also, and |
27 | * may make the binary slightly smaller. | 27 | * may make the binary slightly smaller. |
28 | */ | 28 | */ |
29 | |||
30 | // TO use, do something like this | ||
31 | // | ||
32 | //#define BB_DECLARE_EXTERN | ||
33 | //#define bb_need_memory_exhausted | ||
34 | //#include "messages.c" | ||
35 | // | ||
29 | #ifndef _BB_MESSAGES_C | 36 | #ifndef _BB_MESSAGES_C |
30 | #define _BB_MESSAGES_C | 37 | #define _BB_MESSAGES_C |
31 | 38 | ||
@@ -59,4 +66,9 @@ BB_DEF_MESSAGE(name_too_long, "%s: file name too long\n") | |||
59 | #if defined bb_need_io_error || ! defined BB_DECLARE_EXTERN | 66 | #if defined bb_need_io_error || ! defined BB_DECLARE_EXTERN |
60 | BB_DEF_MESSAGE(io_error, "%s: input/output error -- %s\n") | 67 | BB_DEF_MESSAGE(io_error, "%s: input/output error -- %s\n") |
61 | #endif | 68 | #endif |
69 | #if defined bb_need_help || ! defined BB_DECLARE_EXTERN | ||
70 | BB_DEF_MESSAGE(dash_dash_help, "--help") | ||
71 | #endif | ||
72 | |||
62 | #endif /* _BB_MESSAGES_C */ | 73 | #endif /* _BB_MESSAGES_C */ |
74 | |||