Welcome to mirror list, hosted at ThFree Co, Russian Federation.

version.c « applets - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f6ec24ffdcba3d5a54ce7cb9577b268343de282 (plain)
1
2
3
4
5
6
7
8
9
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";