summaryrefslogtreecommitdiff
path: root/sys/compat/linux/common/linux_exec.c
diff options
context:
space:
mode:
authordsl <dsl@NetBSD.org>2007-12-08 18:35:53 +0000
committerdsl <dsl@NetBSD.org>2007-12-08 18:35:53 +0000
commit28bae79b2713013fa5c98bdd7a8bdde85ccc3ffd (patch)
treee96dcadb2e523d907f659aa130436e909e7bfd97 /sys/compat/linux/common/linux_exec.c
parentc26a54ba243a5ba3a847aeba86fe44f2e4a86203 (diff)
ANSIfy most of the function definitions in sys/compat (but not ndis).
All by the magic of sed ...
Diffstat (limited to 'sys/compat/linux/common/linux_exec.c')
-rw-r--r--sys/compat/linux/common/linux_exec.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/sys/compat/linux/common/linux_exec.c b/sys/compat/linux/common/linux_exec.c
index d87da2bad52..417ce37b330 100644
--- a/sys/compat/linux/common/linux_exec.c
+++ b/sys/compat/linux/common/linux_exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_exec.c,v 1.99 2007/12/04 18:40:15 dsl Exp $ */
+/* $NetBSD: linux_exec.c,v 1.100 2007/12/08 18:36:06 dsl Exp $ */
/*-
* Copyright (c) 1994, 1995, 1998, 2000, 2007 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_exec.c,v 1.99 2007/12/04 18:40:15 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_exec.c,v 1.100 2007/12/08 18:36:06 dsl Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -238,8 +238,7 @@ linux_e_proc_exec(struct proc *p, struct exec_package *epp)
* Emulation per-process exit hook.
*/
static void
-linux_e_proc_exit(p)
- struct proc *p;
+linux_e_proc_exit(struct proc *p)
{
struct linux_emuldata *e = p->p_emuldata;
@@ -309,8 +308,7 @@ linux_userret(void)
}
void
-linux_nptl_proc_exit(p)
- struct proc *p;
+linux_nptl_proc_exit(struct proc *p)
{
struct linux_emuldata *e = p->p_emuldata;
@@ -407,9 +405,7 @@ linux_nptl_proc_fork(p, parent, luserret)
}
void
-linux_nptl_proc_init(p, parent)
- struct proc *p;
- struct proc *parent;
+linux_nptl_proc_init(struct proc *p, struct proc *parent)
{
struct linux_emuldata *e = p->p_emuldata;
struct linux_emuldata *ep;