diff options
author | Paul Fox <pgf@brightstareng.com> | 2006-03-27 20:29:33 +0000 |
---|---|---|
committer | Paul Fox <pgf@brightstareng.com> | 2006-03-27 20:29:33 +0000 |
commit | dbf935dae6917b1c6f322f1a5c34c315fa8ba347 (patch) | |
tree | 49417f9968846ea1438a60bd3806748721e0255a /editors | |
parent | c370ea89fa2f49c043f46d7df2a47c9827620436 (diff) | |
download | busybox-dbf935dae6917b1c6f322f1a5c34c315fa8ba347.tar.gz |
drop obsolete version string in favor of actual BB version (from
Bernhard Fischer)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vi.c | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/editors/vi.c b/editors/vi.c index 3bf9ac3f9..6e5f07ee9 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -3,24 +3,9 @@ * tiny vi.c: A small 'vi' clone * Copyright (C) 2000, 2001 Sterling Huxley <sterling@europa.com> * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ -static const char vi_Version[] = - "$Id: vi.c,v 1.38 2004/08/19 19:15:06 andersen Exp $"; - /* * To compile for standalone use: * gcc -Wall -Os -s -DSTANDALONE -o vi vi.c @@ -85,6 +70,9 @@ static const char vi_Version[] = #include <stdarg.h> #ifndef STANDALONE #include "busybox.h" +#define vi_Version BB_VER " " BB_BT +#else +#define vi_Version "standalone" #endif /* STANDALONE */ #ifdef CONFIG_LOCALE_SUPPORT |