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/alpha/stand/boot | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/alpha/stand/boot')
-rw-r--r-- | sys/arch/alpha/stand/boot/boot.c | 4 | ||||
-rw-r--r-- | sys/arch/alpha/stand/boot/conf.c | 4 | ||||
-rw-r--r-- | sys/arch/alpha/stand/boot/disk.h | 8 |
3 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/alpha/stand/boot/boot.c b/sys/arch/alpha/stand/boot/boot.c index 5210fadcd7b..612d2ce60e4 100644 --- a/sys/arch/alpha/stand/boot/boot.c +++ b/sys/arch/alpha/stand/boot/boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.c,v 1.13 2001/05/16 00:38:16 deraadt Exp $ */ +/* $OpenBSD: boot.c,v 1.14 2002/03/14 01:26:27 millert Exp $ */ /* $NetBSD: boot.c,v 1.10 1997/01/18 01:58:33 cgd Exp $ */ /* @@ -53,7 +53,7 @@ #define _KERNEL #include "include/pte.h" -int loadfile __P((char *, u_int64_t *)); +int loadfile(char *, u_int64_t *); char boot_file[128]; char boot_flags[128]; diff --git a/sys/arch/alpha/stand/boot/conf.c b/sys/arch/alpha/stand/boot/conf.c index 3883551a738..84063c8dfc0 100644 --- a/sys/arch/alpha/stand/boot/conf.c +++ b/sys/arch/alpha/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.4 1996/10/30 22:40:40 niklas Exp $ */ +/* $OpenBSD: conf.c,v 1.5 2002/03/14 01:26:27 millert Exp $ */ /* $NetBSD: conf.c,v 1.3 1995/11/23 02:39:31 cgd Exp $ */ /* @@ -44,7 +44,7 @@ #include "disk.h" -int diskopen __P((struct open_file *, ...)); /* XXX */ +int diskopen(struct open_file *, ...); /* XXX */ int errno; diff --git a/sys/arch/alpha/stand/boot/disk.h b/sys/arch/alpha/stand/boot/disk.h index 264c773ceea..68ff7bda459 100644 --- a/sys/arch/alpha/stand/boot/disk.h +++ b/sys/arch/alpha/stand/boot/disk.h @@ -1,8 +1,8 @@ -/* $OpenBSD: disk.h,v 1.3 1996/10/30 22:40:42 niklas Exp $ */ +/* $OpenBSD: disk.h,v 1.4 2002/03/14 01:26:27 millert Exp $ */ /* $NetBSD: disk.h,v 1.1 1995/11/23 02:39:42 cgd Exp $ */ -int diskstrategy __P((void *, int, daddr_t, size_t, void *, size_t *)); -/* int diskopen __P((struct open_file *, int, int, int)); */ -int diskclose __P((struct open_file *)); +int diskstrategy(void *, int, daddr_t, size_t, void *, size_t *); +/* int diskopen(struct open_file *, int, int, int); */ +int diskclose(struct open_file *); #define diskioctl noioctl |