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/sdvar.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/scsi/sdvar.h')
-rw-r--r-- | sys/scsi/sdvar.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/scsi/sdvar.h b/sys/scsi/sdvar.h index f4ca0297e0d..46fd86c66a3 100644 --- a/sys/scsi/sdvar.h +++ b/sys/scsi/sdvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sdvar.h,v 1.2 2001/06/22 14:35:43 deraadt Exp $ */ +/* $OpenBSD: sdvar.h,v 1.3 2002/03/14 01:27:13 millert Exp $ */ /* $NetBSD: sdvar.h,v 1.7 1998/08/17 00:49:03 mycroft Exp $ */ /*- @@ -96,9 +96,9 @@ struct sd_softc { }; struct sd_ops { - int (*sdo_get_parms) __P((struct sd_softc *, struct disk_parms *, - int)); - void (*sdo_flush) __P((struct sd_softc *, int)); + int (*sdo_get_parms)(struct sd_softc *, struct disk_parms *, + int); + void (*sdo_flush)(struct sd_softc *, int); }; #define SDGP_RESULT_OK 0 /* paramters obtained */ #define SDGP_RESULT_OFFLINE 1 /* no media, or otherwise losing */ |