summaryrefslogtreecommitdiff
path: root/sys/compat/linux32/common/linux32_wait.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/linux32/common/linux32_wait.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/linux32/common/linux32_wait.c')
-rw-r--r--sys/compat/linux32/common/linux32_wait.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/sys/compat/linux32/common/linux32_wait.c b/sys/compat/linux32/common/linux32_wait.c
index 764818f7880..399f376423d 100644
--- a/sys/compat/linux32/common/linux32_wait.c
+++ b/sys/compat/linux32/common/linux32_wait.c
@@ -1,4 +1,4 @@
-/* $NetBSD: linux32_wait.c,v 1.3 2007/03/18 21:38:33 dsl Exp $ */
+/* $NetBSD: linux32_wait.c,v 1.4 2007/12/08 18:36:13 dsl Exp $ */
/*-
* Copyright (c) 2006 Emmanuel Dreyfus, all rights reserved.
@@ -33,7 +33,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux32_wait.c,v 1.3 2007/03/18 21:38:33 dsl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux32_wait.c,v 1.4 2007/12/08 18:36:13 dsl Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -70,10 +70,7 @@ __KERNEL_RCSID(0, "$NetBSD: linux32_wait.c,v 1.3 2007/03/18 21:38:33 dsl Exp $")
#include <compat/linux32/linux32_syscallargs.h>
int
-linux32_sys_waitpid(l, v, retval)
- struct lwp *l;
- void *v;
- register_t *retval;
+linux32_sys_waitpid(struct lwp *l, void *v, register_t *retval)
{
struct linux32_sys_waitpid_args /* {
syscallarg(int) pid;
@@ -91,10 +88,7 @@ linux32_sys_waitpid(l, v, retval)
}
int
-linux32_sys_wait4(l, v, retval)
- struct lwp *l;
- void *v;
- register_t *retval;
+linux32_sys_wait4(struct lwp *l, void *v, register_t *retval)
{
struct linux32_sys_wait4_args /* {
syscallarg(int) pid;