From: "Vladimir N. Oleynik" Date: Thu, 16 Feb 2006 15:41:12 +0000 (-0000) Subject: forgoten new file for 14080 revison X-Git-Tag: 1_1_0~207 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=eaa3b29a6df75786b5cad98dad0abf7b2ddc1ebd;p=oweals%2Fbusybox.git forgoten new file for 14080 revison --- diff --git a/applets/version.c b/applets/version.c new file mode 100644 index 000000000..6f6ec24ff --- /dev/null +++ b/applets/version.c @@ -0,0 +1,10 @@ +#include "busybox.h" + +#ifndef BB_EXTRA_VERSION +#define BANNER "BusyBox v" BB_VER " (" BB_BT ")" +#else +#define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")" +#endif + +const char BB_BANNER[]=BANNER; +const char * const bb_msg_full_version = BANNER " multi-call binary";