summaryrefslogtreecommitdiff
path: root/sys/lkm/exec
diff options
context:
space:
mode:
authordsl <dsl@NetBSD.org>2007-12-19 20:31:35 +0000
committerdsl <dsl@NetBSD.org>2007-12-19 20:31:35 +0000
commitd975bc8ffaf41e64fe40f6ea7e8bba80f9d45f4d (patch)
treee0a0f45d18b64fced80e05da434a2a10e9d364b6 /sys/lkm/exec
parentf97bd8894f2e6239f9c961d376e8794745b0a1fc (diff)
Remove all the __P
Diffstat (limited to 'sys/lkm/exec')
-rw-r--r--sys/lkm/exec/aout/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/elf/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/freebsd_aout/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/freebsd_elf/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/hpux_aout/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/ibcs2_coff/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/ibcs2_elf/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/ibcs2_xout/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/linux_aout/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/linux_elf/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/m68k4k/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/netbsd32_aout/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/netbsd32_elf/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/osf1_ecoff/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/pecoff/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/sunos32_aout/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/sunos_aout/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/svr4_32_elf/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/svr4_elf/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/ultrix_ecoff/lkminit_exec.c6
-rw-r--r--sys/lkm/exec/vax1k/lkminit_exec.c6
21 files changed, 63 insertions, 63 deletions
diff --git a/sys/lkm/exec/aout/lkminit_exec.c b/sys/lkm/exec/aout/lkminit_exec.c
index 0d15280672b..925ddb0c19a 100644
--- a/sys/lkm/exec/aout/lkminit_exec.c
+++ b/sys/lkm/exec/aout/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.6 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.7 2007/12/19 20:31:36 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.6 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2007/12/19 20:31:36 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -47,7 +47,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.6 2005/12/11 12:24:48 christos Ex
#include <sys/lkm.h>
#include <sys/signalvar.h>
-int exec_aout_lkmentry __P((struct lkm_table *, int, int));
+int exec_aout_lkmentry(struct lkm_table *, int, int);
extern const struct emul emul_netbsd; /* XXX */
diff --git a/sys/lkm/exec/elf/lkminit_exec.c b/sys/lkm/exec/elf/lkminit_exec.c
index a76a7619166..4ad79ac62c4 100644
--- a/sys/lkm/exec/elf/lkminit_exec.c
+++ b/sys/lkm/exec/elf/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.8 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.9 2007/12/19 20:31:37 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.9 2007/12/19 20:31:37 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -48,7 +48,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2005/12/11 12:24:48 christos Ex
#include <sys/exec_elf.h>
#include <sys/signalvar.h>
-int exec_elf_lkmentry __P((struct lkm_table *, int, int));
+int exec_elf_lkmentry(struct lkm_table *, int, int);
extern const struct emul emul_netbsd; /* XXX */
extern int netbsd_elf32_probe(struct lwp *, struct exec_package *, void *,
diff --git a/sys/lkm/exec/freebsd_aout/lkminit_exec.c b/sys/lkm/exec/freebsd_aout/lkminit_exec.c
index 0e7ff5d5ce0..bbd98b23e53 100644
--- a/sys/lkm/exec/freebsd_aout/lkminit_exec.c
+++ b/sys/lkm/exec/freebsd_aout/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:37 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:37 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -51,7 +51,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Ex
#include <compat/freebsd/freebsd_exec.h>
-int exec_freebsd_aout_lkmentry __P((struct lkm_table *, int, int));
+int exec_freebsd_aout_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_freebsd_aout =
/* FreeBSD a.out (native word size) */
diff --git a/sys/lkm/exec/freebsd_elf/lkminit_exec.c b/sys/lkm/exec/freebsd_elf/lkminit_exec.c
index b6057d9a1d8..208fc15ba80 100644
--- a/sys/lkm/exec/freebsd_elf/lkminit_exec.c
+++ b/sys/lkm/exec/freebsd_elf/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.11 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.12 2007/12/19 20:31:37 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.11 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.12 2007/12/19 20:31:37 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -53,7 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.11 2005/12/11 12:24:48 christos E
#include <compat/freebsd/freebsd_exec.h>
-int exec_freebsd_elf_lkmentry __P((struct lkm_table *, int, int));
+int exec_freebsd_elf_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_freebsd_elf =
/* FreBSD Elf32 (probe not 64-bit safe) */
diff --git a/sys/lkm/exec/hpux_aout/lkminit_exec.c b/sys/lkm/exec/hpux_aout/lkminit_exec.c
index 1da856a6db5..0a7045dbcfb 100644
--- a/sys/lkm/exec/hpux_aout/lkminit_exec.c
+++ b/sys/lkm/exec/hpux_aout/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:37 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:37 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -51,7 +51,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Ex
#include <compat/hpux/hpux_exec.h>
-int exec_hpux_aout_lkmentry __P((struct lkm_table *, int, int));
+int exec_hpux_aout_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_hpux_aout =
/* HP-UX a.out for m68k (native word size) */
diff --git a/sys/lkm/exec/ibcs2_coff/lkminit_exec.c b/sys/lkm/exec/ibcs2_coff/lkminit_exec.c
index 20e463535e1..09de096a508 100644
--- a/sys/lkm/exec/ibcs2_coff/lkminit_exec.c
+++ b/sys/lkm/exec/ibcs2_coff/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:37 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:37 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -51,7 +51,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Ex
#include <compat/ibcs2/ibcs2_exec.h>
#include <machine/ibcs2_machdep.h>
-int exec_ibcs2_coff_lkmentry __P((struct lkm_table *, int, int));
+int exec_ibcs2_coff_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_ibcs2_coff =
/* iBCS2 COFF (native word size) */
diff --git a/sys/lkm/exec/ibcs2_elf/lkminit_exec.c b/sys/lkm/exec/ibcs2_elf/lkminit_exec.c
index dd26152e34c..705c44a2533 100644
--- a/sys/lkm/exec/ibcs2_elf/lkminit_exec.c
+++ b/sys/lkm/exec/ibcs2_elf/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.10 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.11 2007/12/19 20:31:37 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.10 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.11 2007/12/19 20:31:37 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -53,7 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.10 2005/12/11 12:24:48 christos E
#include <compat/ibcs2/ibcs2_exec.h>
-int exec_ibcs2_elf_lkmentry __P((struct lkm_table *, int, int));
+int exec_ibcs2_elf_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_ibcs2_elf =
/* SCO Elf32 */
diff --git a/sys/lkm/exec/ibcs2_xout/lkminit_exec.c b/sys/lkm/exec/ibcs2_xout/lkminit_exec.c
index 8cc6db67579..daf3759713a 100644
--- a/sys/lkm/exec/ibcs2_xout/lkminit_exec.c
+++ b/sys/lkm/exec/ibcs2_xout/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:37 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:37 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -50,7 +50,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Ex
#include <compat/ibcs2/ibcs2_exec.h>
#include <machine/ibcs2_machdep.h>
-int exec_ibcs2_xout_lkmentry __P((struct lkm_table *, int, int));
+int exec_ibcs2_xout_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_ibcs2_xout =
/* iBCS2 x.out (native word size) */
diff --git a/sys/lkm/exec/linux_aout/lkminit_exec.c b/sys/lkm/exec/linux_aout/lkminit_exec.c
index aad2e5feed9..7b88e4daae9 100644
--- a/sys/lkm/exec/linux_aout/lkminit_exec.c
+++ b/sys/lkm/exec/linux_aout/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:38 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:38 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -51,7 +51,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Ex
#include <compat/linux/common/linux_exec.h>
-int exec_linux_aout_lkmentry __P((struct lkm_table *, int, int));
+int exec_linux_aout_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_linux_aout =
/* Linux a.out (native word size) */
diff --git a/sys/lkm/exec/linux_elf/lkminit_exec.c b/sys/lkm/exec/linux_elf/lkminit_exec.c
index 1d03f8101b7..013aac0d3bf 100644
--- a/sys/lkm/exec/linux_elf/lkminit_exec.c
+++ b/sys/lkm/exec/linux_elf/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.11 2007/10/19 18:52:13 njoly Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.12 2007/12/19 20:31:38 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.11 2007/10/19 18:52:13 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.12 2007/12/19 20:31:38 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -52,7 +52,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.11 2007/10/19 18:52:13 njoly Exp
#include <compat/linux/common/linux_exec.h>
-int exec_linux_elf_lkmentry __P((struct lkm_table *, int, int));
+int exec_linux_elf_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_linux_elf =
/* Linux Elf */
diff --git a/sys/lkm/exec/m68k4k/lkminit_exec.c b/sys/lkm/exec/m68k4k/lkminit_exec.c
index 47d5e2c3c05..58b3ede2af1 100644
--- a/sys/lkm/exec/m68k4k/lkminit_exec.c
+++ b/sys/lkm/exec/m68k4k/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:38 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:38 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -49,7 +49,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Ex
#include <compat/m68k4k/m68k4k_exec.h>
-int exec_m68k4k_lkmentry __P((struct lkm_table *, int, int));
+int exec_m68k4k_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_m68k4k =
/* NetBSD a.out for m68k4k */
diff --git a/sys/lkm/exec/netbsd32_aout/lkminit_exec.c b/sys/lkm/exec/netbsd32_aout/lkminit_exec.c
index eb48b0e2c6f..1d80f6a8812 100644
--- a/sys/lkm/exec/netbsd32_aout/lkminit_exec.c
+++ b/sys/lkm/exec/netbsd32_aout/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:38 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:38 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -50,7 +50,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Ex
#include <sys/exec_aout.h>
#include <compat/netbsd32/netbsd32_exec.h>
-int exec_netbsd32_aout_lkmentry __P((struct lkm_table *, int, int));
+int exec_netbsd32_aout_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_netbsd32_aout =
/* 32-bit NetBSD a.out on 64-bit */
diff --git a/sys/lkm/exec/netbsd32_elf/lkminit_exec.c b/sys/lkm/exec/netbsd32_elf/lkminit_exec.c
index f12f8af7102..5d764c8701f 100644
--- a/sys/lkm/exec/netbsd32_elf/lkminit_exec.c
+++ b/sys/lkm/exec/netbsd32_elf/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.9 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.10 2007/12/19 20:31:38 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.9 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.10 2007/12/19 20:31:38 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -53,7 +53,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.9 2005/12/11 12:24:48 christos Ex
#include <compat/netbsd32/netbsd32_exec.h>
-int exec_netbsd32_elf_lkmentry __P((struct lkm_table *, int, int));
+int exec_netbsd32_elf_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_netbsd32_elf =
/* Elf32 NetBSD on 64-bit */
diff --git a/sys/lkm/exec/osf1_ecoff/lkminit_exec.c b/sys/lkm/exec/osf1_ecoff/lkminit_exec.c
index 26880f8f7dc..7b61ec17271 100644
--- a/sys/lkm/exec/osf1_ecoff/lkminit_exec.c
+++ b/sys/lkm/exec/osf1_ecoff/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.8 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.9 2007/12/19 20:31:38 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.9 2007/12/19 20:31:38 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -51,7 +51,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2005/12/11 12:24:48 christos Ex
#include <compat/osf1/osf1.h>
#include <compat/osf1/osf1_exec.h>
-int exec_osf1_ecoff_lkmentry __P((struct lkm_table *, int, int));
+int exec_osf1_ecoff_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_osf1_ecoff =
/* OSF/1 (Digital Unix) ECOFF */
diff --git a/sys/lkm/exec/pecoff/lkminit_exec.c b/sys/lkm/exec/pecoff/lkminit_exec.c
index 62588e05b53..c8656551309 100644
--- a/sys/lkm/exec/pecoff/lkminit_exec.c
+++ b/sys/lkm/exec/pecoff/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.6 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.7 2007/12/19 20:31:38 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.6 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2007/12/19 20:31:38 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -50,7 +50,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.6 2005/12/11 12:24:48 christos Ex
#include <sys/exec_coff.h>
#include <compat/pecoff/pecoff_exec.h>
-int exec_pecoff_lkmentry __P((struct lkm_table *, int, int));
+int exec_pecoff_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_pecoff =
/* Win32/WinCE PE/COFF (native word size) */
diff --git a/sys/lkm/exec/sunos32_aout/lkminit_exec.c b/sys/lkm/exec/sunos32_aout/lkminit_exec.c
index 07adc4f6a95..cf3d16f943b 100644
--- a/sys/lkm/exec/sunos32_aout/lkminit_exec.c
+++ b/sys/lkm/exec/sunos32_aout/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:39 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:39 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -50,7 +50,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Ex
#include <compat/netbsd32/netbsd32_exec.h>
#include <compat/sunos32/sunos32_exec.h>
-int exec_sunos32_aout_lkmentry __P((struct lkm_table *, int, int));
+int exec_sunos32_aout_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_sunos32_aout =
/* 32-bit SunOS a.out on 64-bit */
diff --git a/sys/lkm/exec/sunos_aout/lkminit_exec.c b/sys/lkm/exec/sunos_aout/lkminit_exec.c
index 2ac89c3c56e..a6e4aea923c 100644
--- a/sys/lkm/exec/sunos_aout/lkminit_exec.c
+++ b/sys/lkm/exec/sunos_aout/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:39 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:39 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -49,7 +49,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:48 christos Ex
#include <compat/sunos/sunos_exec.h>
-int exec_sunos_aout_lkmentry __P((struct lkm_table *, int, int));
+int exec_sunos_aout_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_sunos_aout =
/* SunOS a.out (native word size) */
diff --git a/sys/lkm/exec/svr4_32_elf/lkminit_exec.c b/sys/lkm/exec/svr4_32_elf/lkminit_exec.c
index 8394b7fa4e0..561a0c414dc 100644
--- a/sys/lkm/exec/svr4_32_elf/lkminit_exec.c
+++ b/sys/lkm/exec/svr4_32_elf/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.8 2005/12/11 12:24:49 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.9 2007/12/19 20:31:39 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2005/12/11 12:24:49 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.9 2007/12/19 20:31:39 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -54,7 +54,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2005/12/11 12:24:49 christos Ex
#include <compat/svr4_32/svr4_32_types.h>
#include <compat/svr4_32/svr4_32_exec.h>
-int exec_svr4_32_elf_lkmentry __P((struct lkm_table *, int, int));
+int exec_svr4_32_elf_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_svr4_32_elf =
/* SVR4 Elf32 on 64-bit */
diff --git a/sys/lkm/exec/svr4_elf/lkminit_exec.c b/sys/lkm/exec/svr4_elf/lkminit_exec.c
index 3ab4d6944fb..8824f2f43ae 100644
--- a/sys/lkm/exec/svr4_elf/lkminit_exec.c
+++ b/sys/lkm/exec/svr4_elf/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.11 2005/12/11 12:24:49 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.12 2007/12/19 20:31:39 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.11 2005/12/11 12:24:49 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.12 2007/12/19 20:31:39 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -55,7 +55,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.11 2005/12/11 12:24:49 christos E
#include <compat/svr4/svr4_exec.h>
-int exec_svr4_elf_lkmentry __P((struct lkm_table *, int, int));
+int exec_svr4_elf_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_svr4_elf =
#if ELFSIZE == 32
diff --git a/sys/lkm/exec/ultrix_ecoff/lkminit_exec.c b/sys/lkm/exec/ultrix_ecoff/lkminit_exec.c
index 68f27cb420e..7f4c27d96d8 100644
--- a/sys/lkm/exec/ultrix_ecoff/lkminit_exec.c
+++ b/sys/lkm/exec/ultrix_ecoff/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:49 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:39 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:49 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:39 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -50,7 +50,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:49 christos Ex
#include <compat/ultrix/ultrix_exec.h>
-int exec_ultrix_ecoff_lkmentry __P((struct lkm_table *, int, int));
+int exec_ultrix_ecoff_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_ultrix_ecoff =
/* Ultrix ECOFF */
diff --git a/sys/lkm/exec/vax1k/lkminit_exec.c b/sys/lkm/exec/vax1k/lkminit_exec.c
index 6e29c86fed8..02b9176a73f 100644
--- a/sys/lkm/exec/vax1k/lkminit_exec.c
+++ b/sys/lkm/exec/vax1k/lkminit_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:49 christos Exp $ */
+/* $NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:39 dsl Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:49 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.8 2007/12/19 20:31:39 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -49,7 +49,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_exec.c,v 1.7 2005/12/11 12:24:49 christos Ex
#include <compat/vax1k/vax1k_exec.h>
-int exec_vax1k_lkmentry __P((struct lkm_table *, int, int));
+int exec_vax1k_lkmentry(struct lkm_table *, int, int);
static struct execsw exec_vax1k =
/* NetBSD vax1k a.out */