aboutsummaryrefslogtreecommitdiff
path: root/libbb/messages.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2017-07-18 15:58:52 +0100
committerRon Yorston <rmy@pobox.com>2017-07-18 15:58:52 +0100
commitb680f05ad449505e3d914bebd4c8d83bf768c094 (patch)
treec08ded13d430b0e7e0104f2eb594fad190ce98a3 /libbb/messages.c
parent258200ff81d5a9da54dab35acf36213eff1e399b (diff)
parent513a2457b65894b10b9fd6aa8753fca59eced08c (diff)
downloadbusybox-w32-b680f05ad449505e3d914bebd4c8d83bf768c094.tar.gz
busybox-w32-b680f05ad449505e3d914bebd4c8d83bf768c094.tar.bz2
busybox-w32-b680f05ad449505e3d914bebd4c8d83bf768c094.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'libbb/messages.c')
-rw-r--r--libbb/messages.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libbb/messages.c b/libbb/messages.c
index d74c237e7..3c0b921cf 100644
--- a/libbb/messages.c
+++ b/libbb/messages.c
@@ -14,12 +14,10 @@
14 14
15/* allow version to be extended, via CFLAGS */ 15/* allow version to be extended, via CFLAGS */
16#ifndef BB_EXTRA_VERSION 16#ifndef BB_EXTRA_VERSION
17#define BB_EXTRA_VERSION BB_BT 17#define BB_EXTRA_VERSION " ("AUTOCONF_TIMESTAMP")"
18#endif 18#endif
19 19
20#define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")" 20const char bb_banner[] ALIGN1 = "BusyBox v" BB_VER BB_EXTRA_VERSION;
21
22const char bb_banner[] ALIGN1 = BANNER;
23 21
24 22
25const char bb_msg_memory_exhausted[] ALIGN1 = "out of memory"; 23const char bb_msg_memory_exhausted[] ALIGN1 = "out of memory";