Module Name: src
Committed By: riz
Date: Fri Feb 24 16:38:07 UTC 2012
Modified Files:
src/sys/compat/linux/arch/powerpc [netbsd-6]: linux_exec_powerpc.c
Log Message:
Pull up following revision(s) (requested by rjs in ticket #46):
sys/compat/linux/arch/powerpc/linux_exec_powerpc.c: revision 1.24
Switch to ANSI style declaration.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.23.2.1 \
src/sys/compat/linux/arch/powerpc/linux_exec_powerpc.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/compat/linux/arch/powerpc/linux_exec_powerpc.c
diff -u src/sys/compat/linux/arch/powerpc/linux_exec_powerpc.c:1.23 src/sys/compat/linux/arch/powerpc/linux_exec_powerpc.c:1.23.2.1
--- src/sys/compat/linux/arch/powerpc/linux_exec_powerpc.c:1.23 Fri Feb 3 20:11:53 2012
+++ src/sys/compat/linux/arch/powerpc/linux_exec_powerpc.c Fri Feb 24 16:38:07 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_exec_powerpc.c,v 1.23 2012/02/03 20:11:53 matt Exp $ */
+/* $NetBSD: linux_exec_powerpc.c,v 1.23.2.1 2012/02/24 16:38:07 riz Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -41,7 +41,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_exec_powerpc.c,v 1.23 2012/02/03 20:11:53 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_exec_powerpc.c,v 1.23.2.1 2012/02/24 16:38:07 riz Exp $");
#define ELFSIZE 32
@@ -62,12 +62,9 @@ __KERNEL_RCSID(0, "$NetBSD: linux_exec_p
* Alpha and PowerPC specific linux copyargs function.
*/
int
-ELFNAME2(linux,copyargs)(l, pack, arginfo, stackp, argp)
- struct lwp *l;
- struct exec_package *pack;
- struct ps_strings *arginfo;
- char **stackp;
- void *argp;
+ELFNAME2(linux,copyargs)(struct lwp *l, struct exec_package *pack,
+ struct ps_strings *arginfo, char **stackp,
+ void *argp)
{
size_t len;
AuxInfo ai[LINUX_ELF_AUX_ENTRIES], *a;