diff options
author | bde <bde@FreeBSD.org> | 2003-12-11 10:58:29 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2003-12-11 10:58:29 +0000 |
commit | 07560acf3d9e226f9dc345bcb17170ce34618b81 (patch) | |
tree | 395ade6b161922892ae8c9338d4827509a23ea9f /usr.bin | |
parent | 2bd70eb9323fc1dc1d48fc045b8d4c043c402be9 (diff) | |
download | FreeBSD-src-07560acf3d9e226f9dc345bcb17170ce34618b81.zip FreeBSD-src-07560acf3d9e226f9dc345bcb17170ce34618b81.tar.gz |
Fixed misplacement of __FBSDID(). Backed out editing of vendor id lines.
Just wrap them in #if 0...#endif.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/vmstat/vmstat.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index e034911..b307fa6 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -31,20 +31,21 @@ * 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 +#endif /* not lint */ +#if 0 #ifndef lint -static const char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93"; +static char sccsid[] = "@(#)vmstat.c 8.1 (Berkeley) 6/6/93"; +#endif /* not lint */ #endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/time.h> #include <sys/proc.h> |