Module Name:    src
Committed By:   rjs
Date:           Tue Feb 21 18:10:00 UTC 2012

Modified Files:
        src/sys/compat/linux/arch/powerpc: linux_exec_powerpc.c

Log Message:
Switch to ANSI style declaration.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 \
    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.24
--- 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	Tue Feb 21 18:10:00 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.24 2012/02/21 18:10:00 rjs 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.24 2012/02/21 18:10:00 rjs 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;

Reply via email to