Use __SCCSID for SCCS IDs in libkvm sources.
Rather than using #ifdef's around a static char array, use the existing helper macro from <sys/cdefs.h> for SCCS IDs. To preserve existing behavior, add -DNO__SCCSID to CFLAGS to not include SCCS IDs in the built library by default. Reviewed by: brooks, dab (older version) Reviewed by: rgrimes Differential Revision: https://reviews.freebsd.org/D15459
This commit is contained in:
parent
84cac654ae
commit
993d074be6
@ -6,7 +6,7 @@ LIB= kvm
|
||||
|
||||
SHLIBDIR?= /lib
|
||||
SHLIB_MAJOR= 7
|
||||
CFLAGS+=-DLIBC_SCCS -I${.CURDIR}
|
||||
CFLAGS+=-DNO__SCCSID -I${.CURDIR}
|
||||
|
||||
WARNS?= 6
|
||||
|
||||
|
@ -35,12 +35,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#if defined(LIBC_SCCS) && !defined(lint)
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)kvm.c 8.2 (Berkeley) 2/13/94";
|
||||
#endif
|
||||
#endif /* LIBC_SCCS and not lint */
|
||||
__SCCSID("@(#)kvm.c 8.2 (Berkeley) 2/13/94");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/fnv_hash.h>
|
||||
|
@ -35,12 +35,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#if defined(LIBC_SCCS) && !defined(lint)
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)kvm_hp300.c 8.1 (Berkeley) 6/4/93";
|
||||
#endif
|
||||
#endif /* LIBC_SCCS and not lint */
|
||||
__SCCSID("@(#)kvm_hp300.c 8.1 (Berkeley) 6/4/93");
|
||||
|
||||
/*
|
||||
* AMD64 machine dependent routines for kvm. Hopefully, the forthcoming
|
||||
|
@ -31,12 +31,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#if defined(LIBC_SCCS) && !defined(lint)
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)kvm_getloadavg.c 8.1 (Berkeley) 6/4/93";
|
||||
#endif
|
||||
#endif /* LIBC_SCCS and not lint */
|
||||
__SCCSID("@(#)kvm_getloadavg.c 8.1 (Berkeley) 6/4/93");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/time.h>
|
||||
|
@ -35,12 +35,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#if defined(LIBC_SCCS) && !defined(lint)
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)kvm_hp300.c 8.1 (Berkeley) 6/4/93";
|
||||
#endif
|
||||
#endif /* LIBC_SCCS and not lint */
|
||||
__SCCSID("@(#)kvm_hp300.c 8.1 (Berkeley) 6/4/93");
|
||||
|
||||
/*
|
||||
* i386 machine dependent routines for kvm. Hopefully, the forthcoming
|
||||
|
@ -33,14 +33,9 @@
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#if 0
|
||||
#if defined(LIBC_SCCS) && !defined(lint)
|
||||
static char sccsid[] = "@(#)kvm_proc.c 8.3 (Berkeley) 9/23/93";
|
||||
#endif /* LIBC_SCCS and not lint */
|
||||
#endif
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
__SCCSID("@(#)kvm_proc.c 8.3 (Berkeley) 9/23/93");
|
||||
|
||||
/*
|
||||
* Proc traversal interface for kvm. ps and w are (probably) the exclusive
|
||||
|
@ -37,12 +37,7 @@
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#if defined(LIBC_SCCS) && !defined(lint)
|
||||
#if 0
|
||||
static char sccsid[] = "@(#)kvm_hp300.c 8.1 (Berkeley) 6/4/93";
|
||||
#endif
|
||||
#endif /* LIBC_SCCS and not lint */
|
||||
__SCCSID("@(#)kvm_hp300.c 8.1 (Berkeley) 6/4/93");
|
||||
|
||||
/*
|
||||
* sparc64 machine dependent routines for kvm.
|
||||
|
Loading…
Reference in New Issue
Block a user