blob: ce75f1ff938820995c4ac50007f6be4fea8ee12a [file] [log] [blame]
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Version stuff.
4 *
5 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
6 */
7
"Vladimir N. Oleynik"eaa3b292006-02-16 15:41:12 +00008#include "busybox.h"
9
10#ifndef BB_EXTRA_VERSION
11#define BANNER "BusyBox v" BB_VER " (" BB_BT ")"
12#else
13#define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")"
14#endif
15
16const char BB_BANNER[]=BANNER;
17const char * const bb_msg_full_version = BANNER " multi-call binary";