diff options
-rw-r--r-- | applets/version.c | 10 |
1 files changed, 10 insertions, 0 deletions
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 @@ | |||
1 | #include "busybox.h" | ||
2 | |||
3 | #ifndef BB_EXTRA_VERSION | ||
4 | #define BANNER "BusyBox v" BB_VER " (" BB_BT ")" | ||
5 | #else | ||
6 | #define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")" | ||
7 | #endif | ||
8 | |||
9 | const char BB_BANNER[]=BANNER; | ||
10 | const char * const bb_msg_full_version = BANNER " multi-call binary"; | ||