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/mvmeppc/stand/libbug | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/mvmeppc/stand/libbug')
-rw-r--r-- | sys/arch/mvmeppc/stand/libbug/libbug.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/sys/arch/mvmeppc/stand/libbug/libbug.h b/sys/arch/mvmeppc/stand/libbug/libbug.h index c282cfaac9e..fb2148fa7a5 100644 --- a/sys/arch/mvmeppc/stand/libbug/libbug.h +++ b/sys/arch/mvmeppc/stand/libbug/libbug.h @@ -1,24 +1,24 @@ -/* $OpenBSD: libbug.h,v 1.1 2001/06/26 21:58:04 smurph Exp $ */ +/* $OpenBSD: libbug.h,v 1.2 2002/03/14 01:26:41 millert Exp $ */ /* * prototypes and such. note that get/put char are in stand.h */ -void mvmeprom_delay __P((int)); -int mvmeprom_diskrd __P((struct mvmeprom_dskio *)); -int mvmeprom_diskwr __P((struct mvmeprom_dskio *)); -struct mvmeprom_brdid *mvmeprom_getbrdid __P((void)); -int peekchar __P((void)); -void mvmeprom_outln __P((char *, char *)); -void mvmeprom_outstr __P((char *, char *)); -void mvmeprom_rtc_rd __P((struct mvmeprom_time *)); -int mvmeprom_netctrl __P((struct mvmeprom_netctrl *)); -int mvmeprom_netctrl_init __P((u_char, u_char)); -int mvmeprom_netctrl_hwa __P((u_char, u_char, void *, u_long *)); -int mvmeprom_netctrl_tx __P((u_char, u_char, void *, u_long *)); -int mvmeprom_netctrl_rx __P((u_char, u_char, void *, u_long *)); -int mvmeprom_netctrl_flush_rx __P((u_char, u_char)); -int mvmeprom_netctrl_reset __P((u_char, u_char)); +void mvmeprom_delay(int); +int mvmeprom_diskrd(struct mvmeprom_dskio *); +int mvmeprom_diskwr(struct mvmeprom_dskio *); +struct mvmeprom_brdid *mvmeprom_getbrdid(void); +int peekchar(void); +void mvmeprom_outln(char *, char *); +void mvmeprom_outstr(char *, char *); +void mvmeprom_rtc_rd(struct mvmeprom_time *); +int mvmeprom_netctrl(struct mvmeprom_netctrl *); +int mvmeprom_netctrl_init(u_char, u_char); +int mvmeprom_netctrl_hwa(u_char, u_char, void *, u_long *); +int mvmeprom_netctrl_tx(u_char, u_char, void *, u_long *); +int mvmeprom_netctrl_rx(u_char, u_char, void *, u_long *); +int mvmeprom_netctrl_flush_rx(u_char, u_char); +int mvmeprom_netctrl_reset(u_char, u_char); /* * bugcrt stuff |