diff options
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 | |||