Fixed misplacement of __FBSDID(). Backed out editing of vendor id lines.

Just wrap them in #if 0...#endif.
This commit is contained in:
Bruce Evans 2003-12-11 10:58:29 +00:00
parent e481bf775f
commit 06849fd97a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123441

View File

@ -31,19 +31,20 @@
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1980, 1986, 1991, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#if 0
#ifndef lint
static char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93";
#endif /* not lint */
#endif
#ifndef lint
static const char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93";
#endif
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/time.h>