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/scsi/scsi_ioctl.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/scsi/scsi_ioctl.c')
-rw-r--r-- | sys/scsi/scsi_ioctl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/scsi/scsi_ioctl.c b/sys/scsi/scsi_ioctl.c index f6b41e95165..a2b2629516e 100644 --- a/sys/scsi/scsi_ioctl.c +++ b/sys/scsi/scsi_ioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsi_ioctl.c,v 1.14 2002/01/07 19:04:46 mickey Exp $ */ +/* $OpenBSD: scsi_ioctl.c,v 1.15 2002/03/14 01:27:13 millert Exp $ */ /* $NetBSD: scsi_ioctl.c,v 1.23 1996/10/12 23:23:17 christos Exp $ */ /* @@ -63,10 +63,10 @@ struct scsi_ioctl { LIST_HEAD(, scsi_ioctl) si_head; -struct scsi_ioctl *si_get __P((void)); -void si_free __P((struct scsi_ioctl *)); -struct scsi_ioctl *si_find __P((struct buf *)); -void scsistrategy __P((struct buf *)); +struct scsi_ioctl *si_get(void); +void si_free(struct scsi_ioctl *); +struct scsi_ioctl *si_find(struct buf *); +void scsistrategy(struct buf *); struct scsi_ioctl * si_get() |