diff options
author | obrien <obrien@FreeBSD.org> | 2003-04-03 21:36:33 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-04-03 21:36:33 +0000 |
commit | 96d4258af94bd2a9eec38eda0969044389c23d91 (patch) | |
tree | 6ea4281e59072c649579ced46faa3cd8495197d4 /sys/boot/efi | |
parent | 2ccfc29d0bd77d3321d9bb5d0b1ccb8411160a67 (diff) | |
download | FreeBSD-src-96d4258af94bd2a9eec38eda0969044389c23d91.zip FreeBSD-src-96d4258af94bd2a9eec38eda0969044389c23d91.tar.gz |
Use __FBSDID rather than rcsid[].
Diffstat (limited to 'sys/boot/efi')
-rw-r--r-- | sys/boot/efi/libefi/copy.c | 6 | ||||
-rw-r--r-- | sys/boot/efi/libefi/delay.c | 6 | ||||
-rw-r--r-- | sys/boot/efi/libefi/efi_console.c | 6 | ||||
-rw-r--r-- | sys/boot/efi/libefi/libefi.c | 6 | ||||
-rw-r--r-- | sys/boot/efi/libefi/module.c | 6 | ||||
-rw-r--r-- | sys/boot/efi/libefi/time.c | 6 | ||||
-rw-r--r-- | sys/boot/efi/loader/conf.c | 6 | ||||
-rw-r--r-- | sys/boot/efi/loader/main.c | 6 |
8 files changed, 16 insertions, 32 deletions
diff --git a/sys/boot/efi/libefi/copy.c b/sys/boot/efi/libefi/copy.c index be1fcef..7bc4edf 100644 --- a/sys/boot/efi/libefi/copy.c +++ b/sys/boot/efi/libefi/copy.c @@ -24,10 +24,8 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * MD primitives supporting placement of module data diff --git a/sys/boot/efi/libefi/delay.c b/sys/boot/efi/libefi/delay.c index 2a5b98b..723f681 100644 --- a/sys/boot/efi/libefi/delay.c +++ b/sys/boot/efi/libefi/delay.c @@ -24,10 +24,8 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <efi.h> #include <efilib.h> diff --git a/sys/boot/efi/libefi/efi_console.c b/sys/boot/efi/libefi/efi_console.c index 254ef0d..c88462e 100644 --- a/sys/boot/efi/libefi/efi_console.c +++ b/sys/boot/efi/libefi/efi_console.c @@ -24,10 +24,8 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <efi.h> #include <efilib.h> diff --git a/sys/boot/efi/libefi/libefi.c b/sys/boot/efi/libefi/libefi.c index abfa6a8..563b533 100644 --- a/sys/boot/efi/libefi/libefi.c +++ b/sys/boot/efi/libefi/libefi.c @@ -24,10 +24,8 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <efi.h> #include <efilib.h> diff --git a/sys/boot/efi/libefi/module.c b/sys/boot/efi/libefi/module.c index 6c07e28..7a3f4b2 100644 --- a/sys/boot/efi/libefi/module.c +++ b/sys/boot/efi/libefi/module.c @@ -24,10 +24,8 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <stand.h> diff --git a/sys/boot/efi/libefi/time.c b/sys/boot/efi/libefi/time.c index 27192de..3ca456e 100644 --- a/sys/boot/efi/libefi/time.c +++ b/sys/boot/efi/libefi/time.c @@ -38,10 +38,8 @@ * */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <efi.h> #include <efilib.h> diff --git a/sys/boot/efi/loader/conf.c b/sys/boot/efi/loader/conf.c index 0e5407c..145b16b 100644 --- a/sys/boot/efi/loader/conf.c +++ b/sys/boot/efi/loader/conf.c @@ -31,10 +31,8 @@ * $NetBSD: conf.c,v 1.2 1997/03/22 09:03:29 thorpej Exp $ */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <stand.h> #include <efi.h> diff --git a/sys/boot/efi/loader/main.c b/sys/boot/efi/loader/main.c index bc1c044..58b9620 100644 --- a/sys/boot/efi/loader/main.c +++ b/sys/boot/efi/loader/main.c @@ -25,10 +25,8 @@ * SUCH DAMAGE. */ -#ifndef lint -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <stand.h> #include <string.h> |