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/isa/mpu401.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/mpu401.c')
-rw-r--r-- | sys/dev/isa/mpu401.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/mpu401.c b/sys/dev/isa/mpu401.c index 82079d04863..3c72e004bb2 100644 --- a/sys/dev/isa/mpu401.c +++ b/sys/dev/isa/mpu401.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpu401.c,v 1.5 2001/11/06 19:53:19 miod Exp $ */ +/* $OpenBSD: mpu401.c,v 1.6 2002/03/14 01:26:56 millert Exp $ */ /* $NetBSD: mpu401.c,v 1.3 1998/11/25 22:17:06 augustss Exp $ */ /* @@ -160,8 +160,8 @@ int mpu_open(v, flags, iintr, ointr, arg) void *v; int flags; - void (*iintr)__P((void *, int)); - void (*ointr)__P((void *)); + void (*iintr)(void *, int); + void (*ointr)(void *); void *arg; { struct mpu_softc *sc = v; |