diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/macppc/stand/boot.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/macppc/stand/boot.c')
-rw-r--r-- | sys/arch/macppc/stand/boot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/macppc/stand/boot.c b/sys/arch/macppc/stand/boot.c index e8bb39a3ba2..906e5f3222b 100644 --- a/sys/arch/macppc/stand/boot.c +++ b/sys/arch/macppc/stand/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.3 2001/12/15 22:26:18 deraadt Exp $ */ +/* $OpenBSD: boot.c,v 1.4 2002/03/14 01:26:37 millert Exp $ */ /* $NetBSD: boot.c,v 1.1 1997/04/16 20:29:17 thorpej Exp $ */ /* @@ -67,11 +67,11 @@ int boothowto; int debug; #ifdef POWERPC_BOOT_ELF -int elf_exec __P((int, Elf32_Ehdr *, u_int32_t *, void **)); +int elf_exec(int, Elf32_Ehdr *, u_int32_t *, void **); #endif #ifdef POWERPC_BOOT_AOUT -int aout_exec __P((int, struct exec *, u_int32_t *, void **)); +int aout_exec(int, struct exec *, u_int32_t *, void **); #endif static void |