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/amiga/stand/boot | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/amiga/stand/boot')
-rw-r--r-- | sys/arch/amiga/stand/boot/aout2bb/aout2bb.c | 4 | ||||
-rw-r--r-- | sys/arch/amiga/stand/boot/aout2bb/chksum.h | 4 | ||||
-rw-r--r-- | sys/arch/amiga/stand/boot/main.c | 10 | ||||
-rw-r--r-- | sys/arch/amiga/stand/boot/xd.c | 10 |
4 files changed, 14 insertions, 14 deletions
diff --git a/sys/arch/amiga/stand/boot/aout2bb/aout2bb.c b/sys/arch/amiga/stand/boot/aout2bb/aout2bb.c index 006faa03658..1f7a1392168 100644 --- a/sys/arch/amiga/stand/boot/aout2bb/aout2bb.c +++ b/sys/arch/amiga/stand/boot/aout2bb/aout2bb.c @@ -1,5 +1,5 @@ /* - * $OpenBSD: aout2bb.c,v 1.2 1997/03/22 00:20:48 niklas Exp $ + * $OpenBSD: aout2bb.c,v 1.3 2002/03/14 01:26:29 millert Exp $ * $NetBSD: aout2bb.c,v 1.2 1996/12/31 22:39:58 veego Exp $ * * Copyright (c) 1996 Ignatios Souvatzis @@ -51,7 +51,7 @@ #include "aout2bb.h" #include "chksum.h" -void usage __P((void)); +void usage(void); int intcmp(const void *, const void *); int main(int argc, char *argv[]); diff --git a/sys/arch/amiga/stand/boot/aout2bb/chksum.h b/sys/arch/amiga/stand/boot/aout2bb/chksum.h index 34fddcf8cca..f3528f8a63f 100644 --- a/sys/arch/amiga/stand/boot/aout2bb/chksum.h +++ b/sys/arch/amiga/stand/boot/aout2bb/chksum.h @@ -1,5 +1,5 @@ /* - * $OpenBSD: chksum.h,v 1.1 1997/01/16 09:26:51 niklas Exp $ + * $OpenBSD: chksum.h,v 1.2 2002/03/14 01:26:29 millert Exp $ * $NetBSD: chksum.h,v 1.1.1.1 1996/11/29 23:36:30 is Exp $ * * Copyright (c) 1996 Ignatios Souvatzis @@ -35,5 +35,5 @@ #define CHKSUMOFFS 1 -u_int32_t chksum __P((u_int32_t *, int)); +u_int32_t chksum(u_int32_t *, int); diff --git a/sys/arch/amiga/stand/boot/main.c b/sys/arch/amiga/stand/boot/main.c index c788275d318..bfaf4d86d9a 100644 --- a/sys/arch/amiga/stand/boot/main.c +++ b/sys/arch/amiga/stand/boot/main.c @@ -1,5 +1,5 @@ /* - * $OpenBSD: main.c,v 1.4 2000/02/12 15:29:06 espie Exp $ + * $OpenBSD: main.c,v 1.5 2002/03/14 01:26:29 millert Exp $ * $NetBSD: main.c,v 1.1.1.1 1996/11/29 23:36:29 is Exp $ * * @@ -60,10 +60,10 @@ #define EXECMIN 36 -void startit __P((void *, u_long, u_long, void *, u_long, u_long, int, void *, - int, int, u_long, u_long, int)); -void startit_end __P((void)); -int get_cpuid __P((u_int32_t *)); +void startit(void *, u_long, u_long, void *, u_long, u_long, int, void *, + int, int, u_long, u_long, int); +void startit_end(void); +int get_cpuid(u_int32_t *); /* * Kernel startup interface version diff --git a/sys/arch/amiga/stand/boot/xd.c b/sys/arch/amiga/stand/boot/xd.c index b3831842c60..31e068ee980 100644 --- a/sys/arch/amiga/stand/boot/xd.c +++ b/sys/arch/amiga/stand/boot/xd.c @@ -1,5 +1,5 @@ /* - * $OpenBSD: xd.c,v 1.1 1997/01/16 09:26:45 niklas Exp $ + * $OpenBSD: xd.c,v 1.2 2002/03/14 01:26:29 millert Exp $ * $NetBSD: xd.c,v 1.1.1.1 1996/11/29 23:36:29 is Exp $ * * Copyright (c) 1996 Ignatios Souvatzis. @@ -42,10 +42,10 @@ #include "amigaio.h" #include "libstubs.h" -static int xdstrategy __P((void *, int, daddr_t, size_t, void *, size_t *)); -static int xdopen __P((struct open_file *, ...)); -static int xdclose __P((struct open_file *)); -static int xdioctl __P((struct open_file *, u_long, void *)); +static int xdstrategy(void *, int, daddr_t, size_t, void *, size_t *); +static int xdopen(struct open_file *, ...); +static int xdclose(struct open_file *); +static int xdioctl(struct open_file *, u_long, void *); static u_int32_t aio_base; static struct AmigaIO *aio_save; |