diff options
| author | lukem <lukem@NetBSD.org> | 1997-10-17 10:18:36 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 1997-10-17 10:18:36 +0000 |
| commit | fcfec169dfa9801fd49404fe2b6af0cc2fc99ef6 (patch) | |
| tree | 34ca7fc3aba01f15c9ad22a2355a6c7a0ab218ca /usr.sbin/mdsetimage | |
| parent | e5436d326b011a4ffef5064cb599b0554b99a2a4 (diff) | |
WARNSify
Diffstat (limited to 'usr.sbin/mdsetimage')
| -rw-r--r-- | usr.sbin/mdsetimage/exec_aout.c | 5 | ||||
| -rw-r--r-- | usr.sbin/mdsetimage/exec_ecoff.c | 5 | ||||
| -rw-r--r-- | usr.sbin/mdsetimage/exec_elf32.c | 5 | ||||
| -rw-r--r-- | usr.sbin/mdsetimage/exec_elf64.c | 6 |
4 files changed, 13 insertions, 8 deletions
diff --git a/usr.sbin/mdsetimage/exec_aout.c b/usr.sbin/mdsetimage/exec_aout.c index 8db6d7a5b46..e96ee145aa4 100644 --- a/usr.sbin/mdsetimage/exec_aout.c +++ b/usr.sbin/mdsetimage/exec_aout.c @@ -1,4 +1,4 @@ -/* $NetBSD: exec_aout.c,v 1.2 1997/09/30 06:20:16 scottr Exp $ */ +/* $NetBSD: exec_aout.c,v 1.3 1997/10/17 10:28:21 lukem Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. @@ -30,8 +30,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> #ifndef lint -static char *rcsid = "$NetBSD: exec_aout.c,v 1.2 1997/09/30 06:20:16 scottr Exp $"; +__RCSID("$NetBSD: exec_aout.c,v 1.3 1997/10/17 10:28:21 lukem Exp $"); #endif /* not lint */ #include <sys/types.h> diff --git a/usr.sbin/mdsetimage/exec_ecoff.c b/usr.sbin/mdsetimage/exec_ecoff.c index 932bd1db28d..d08184fbf32 100644 --- a/usr.sbin/mdsetimage/exec_ecoff.c +++ b/usr.sbin/mdsetimage/exec_ecoff.c @@ -1,4 +1,4 @@ -/* $NetBSD: exec_ecoff.c,v 1.1 1996/10/04 00:18:56 cgd Exp $ */ +/* $NetBSD: exec_ecoff.c,v 1.2 1997/10/17 10:28:26 lukem Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. @@ -30,8 +30,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> #ifndef lint -static char *rcsid = "$NetBSD: exec_ecoff.c,v 1.1 1996/10/04 00:18:56 cgd Exp $"; +__RCSID("$NetBSD: exec_ecoff.c,v 1.2 1997/10/17 10:28:26 lukem Exp $"); #endif /* not lint */ #include <sys/types.h> diff --git a/usr.sbin/mdsetimage/exec_elf32.c b/usr.sbin/mdsetimage/exec_elf32.c index 4d3ed9b8962..f2fd7b028c3 100644 --- a/usr.sbin/mdsetimage/exec_elf32.c +++ b/usr.sbin/mdsetimage/exec_elf32.c @@ -1,4 +1,4 @@ -/* $NetBSD: exec_elf32.c,v 1.1 1996/10/04 00:18:57 cgd Exp $ */ +/* $NetBSD: exec_elf32.c,v 1.2 1997/10/17 10:28:30 lukem Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. @@ -30,8 +30,9 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> #ifndef lint -static char *rcsid = "$NetBSD: exec_elf32.c,v 1.1 1996/10/04 00:18:57 cgd Exp $"; +__RCSID("$NetBSD: exec_elf32.c,v 1.2 1997/10/17 10:28:30 lukem Exp $"); #endif /* not lint */ #ifndef ELFSIZE diff --git a/usr.sbin/mdsetimage/exec_elf64.c b/usr.sbin/mdsetimage/exec_elf64.c index 95cdbc25467..f1cede5b69b 100644 --- a/usr.sbin/mdsetimage/exec_elf64.c +++ b/usr.sbin/mdsetimage/exec_elf64.c @@ -1,4 +1,4 @@ -/* $NetBSD: exec_elf64.c,v 1.1 1996/10/04 00:18:57 cgd Exp $ */ +/* $NetBSD: exec_elf64.c,v 1.2 1997/10/17 10:28:35 lukem Exp $ */ /* * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. @@ -30,8 +30,10 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/cdefs.h> #ifndef lint -static char *e64rcsid = "$NetBSD: exec_elf64.c,v 1.1 1996/10/04 00:18:57 cgd Exp $"; +__IDSTRING(e64rcsid, + "$NetBSD: exec_elf64.c,v 1.2 1997/10/17 10:28:35 lukem Exp $"); #endif /* not lint */ #define ELFSIZE 64 |
