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/netboot | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/alpha/stand/netboot')
-rw-r--r-- | sys/arch/alpha/stand/netboot/dev_net.h | 6 | ||||
-rw-r--r-- | sys/arch/alpha/stand/netboot/netboot.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/alpha/stand/netboot/dev_net.h b/sys/arch/alpha/stand/netboot/dev_net.h index 3e3d4b091d6..447c71b34b6 100644 --- a/sys/arch/alpha/stand/netboot/dev_net.h +++ b/sys/arch/alpha/stand/netboot/dev_net.h @@ -1,8 +1,8 @@ -/* $OpenBSD: dev_net.h,v 1.1 1996/10/30 22:40:53 niklas Exp $ */ +/* $OpenBSD: dev_net.h,v 1.2 2002/03/14 01:26:27 millert Exp $ */ -int net_open __P((struct open_file *, ...)); -int net_close __P((struct open_file *)); +int net_open(struct open_file *, ...); +int net_close(struct open_file *); int net_ioctl(); int net_strategy(); diff --git a/sys/arch/alpha/stand/netboot/netboot.c b/sys/arch/alpha/stand/netboot/netboot.c index 9f240bda3ca..164212c36bb 100644 --- a/sys/arch/alpha/stand/netboot/netboot.c +++ b/sys/arch/alpha/stand/netboot/netboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: netboot.c,v 1.3 1996/11/27 19:54:56 niklas Exp $ */ +/* $OpenBSD: netboot.c,v 1.4 2002/03/14 01:26:27 millert Exp $ */ /* $NetBSD: netboot.c,v 1.1 1996/09/18 20:03:12 cgd Exp $ */ /* @@ -52,7 +52,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]; |