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/sparc/stand/bootxx | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/sparc/stand/bootxx')
-rw-r--r-- | sys/arch/sparc/stand/bootxx/bootxx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/sparc/stand/bootxx/bootxx.c b/sys/arch/sparc/stand/bootxx/bootxx.c index bf7a4bfaaa2..2b9325548fe 100644 --- a/sys/arch/sparc/stand/bootxx/bootxx.c +++ b/sys/arch/sparc/stand/bootxx/bootxx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bootxx.c,v 1.1 1997/09/17 10:46:16 downsj Exp $ */ +/* $OpenBSD: bootxx.c,v 1.2 2002/03/14 01:26:44 millert Exp $ */ /* $NetBSD: bootxx.c,v 1.2 1997/09/14 19:28:17 pk Exp $ */ /* @@ -60,14 +60,14 @@ int32_t block_count = MAXBLOCKNUM; daddr_t block_table[MAXBLOCKNUM] = { 0 }; -void loadboot __P((struct open_file *, caddr_t)); +void loadboot(struct open_file *, caddr_t); int main() { char *dummy; size_t n; - register void (*entry)__P((caddr_t)) = (void (*)__P((caddr_t)))LOADADDR; + register void (*entry)(caddr_t) = (void (*)(caddr_t))LOADADDR; prom_init(); io.f_flags = F_RAW; |