- move #include busybox.h to the very top so we pull in the config
[oweals/busybox.git] / applets / version.c
1 /* 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
8 #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
16 const char BB_BANNER[]=BANNER;
17 const char * const bb_msg_full_version = BANNER " multi-call binary";