diff options
Diffstat (limited to 'libbb/messages.c')
-rw-r--r-- | libbb/messages.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libbb/messages.c b/libbb/messages.c index 2feb6a970..b6755058e 100644 --- a/libbb/messages.c +++ b/libbb/messages.c | |||
@@ -9,12 +9,14 @@ | |||
9 | 9 | ||
10 | #ifdef L_full_version | 10 | #ifdef L_full_version |
11 | #ifndef BB_EXTRA_VERSION | 11 | #ifndef BB_EXTRA_VERSION |
12 | #define LIBBB_BANNER "BusyBox's library v" BB_VER " (" BB_BT ")" | 12 | #define BANNER "BusyBox v" BB_VER " (" BB_BT ")" |
13 | #else | 13 | #else |
14 | #define LIBBB_BANNER "BusyBox's library v" BB_VER " (" BB_EXTRA_VERSION ")" | 14 | #define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")" |
15 | #endif | 15 | #endif |
16 | const char * const libbb_msg_full_version = LIBBB_BANNER; | 16 | const char BB_BANNER[]=BANNER; |
17 | const char * const bb_msg_full_version = BANNER " multi-call binary"; | ||
17 | #endif | 18 | #endif |
19 | |||
18 | #ifdef L_memory_exhausted | 20 | #ifdef L_memory_exhausted |
19 | const char * const bb_msg_memory_exhausted = "memory exhausted"; | 21 | const char * const bb_msg_memory_exhausted = "memory exhausted"; |
20 | #endif | 22 | #endif |