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/dev/ic/xlreg.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/ic/xlreg.h')
-rw-r--r-- | sys/dev/ic/xlreg.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ic/xlreg.h b/sys/dev/ic/xlreg.h index 3632c16b5fc..2300a1e5096 100644 --- a/sys/dev/ic/xlreg.h +++ b/sys/dev/ic/xlreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: xlreg.h,v 1.9 2001/08/19 01:45:55 jason Exp $ */ +/* $OpenBSD: xlreg.h,v 1.10 2002/03/14 01:26:55 millert Exp $ */ /* * Copyright (c) 1997, 1998 @@ -584,7 +584,7 @@ struct xl_softc { struct xl_list_data *xl_ldata; struct xl_chain_data xl_cdata; int xl_flags; - void (*intr_ack) __P((struct xl_softc *)); + void (*intr_ack)(struct xl_softc *); void * sc_sdhook, *sc_pwrhook; }; @@ -725,6 +725,6 @@ struct xl_stats { #define ETHER_ALIGN 2 #endif -extern int xl_intr __P((void *)); -extern void xl_attach __P((struct xl_softc *)); -extern int xl_detach __P((struct xl_softc *)); +extern int xl_intr(void *); +extern void xl_attach(struct xl_softc *); +extern int xl_detach(struct xl_softc *); |