Remove the useless "version" number output.

We don't give a version number each userland binary.
This commit is contained in:
David E. O'Brien 2005-02-06 12:54:54 +00:00
parent 61d087cf53
commit 0446a99e41
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141385

View File

@ -32,10 +32,6 @@ static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#define VMAJOR 2
#define VMINOR 0
#define VDELTA 15
/*
* this will cause the raw mp table to be dumped to /tmp/mpdump
*
@ -318,7 +314,7 @@ main( int argc, char *argv[] )
/* announce ourselves */
puts( SEP_LINE2 );
printf( "MPTable, version %d.%d.%d\n", VMAJOR, VMINOR, VDELTA );
printf( "MPTable\n" );
while ((ch = getopt(argc, argv, "d:g:h:v:")) != -1) {
switch(ch) {