aboutsummaryrefslogtreecommitdiff
path: root/applets/version.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-08-09 20:56:23 +0000
committerRob Landley <rob@landley.net>2006-08-09 20:56:23 +0000
commit519d7df930d2ac14b7a833c0255a4a5abd5a329b (patch)
treead8d4242826335c7e418648d60d82a55095f11e1 /applets/version.c
parente55a73c7a89d9437bda82d317ee980989a5949db (diff)
downloadbusybox-519d7df930d2ac14b7a833c0255a4a5abd5a329b.tar.gz
Another whack at scripts/individual. Now builds 212 applets.
Diffstat (limited to 'applets/version.c')
-rw-r--r--applets/version.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/applets/version.c b/applets/version.c
deleted file mode 100644
index ce75f1ff9..000000000
--- a/applets/version.c
+++ /dev/null
@@ -1,17 +0,0 @@
-/* vi: set sw=4 ts=4: */
-/*
- * Version stuff.
- *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
- */
-
-#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";