aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1994-12-11 23:05:18 +0000
committerBruce Evans <bde@FreeBSD.org>1994-12-11 23:05:18 +0000
commit9d93bf70ea18f22091a475439ec7fc062ad62df0 (patch)
treea89f5a572793566518decdd10eba39a7835f0957
parent3cefada244ed5c3ddca2590c5ee341c11f84a3a5 (diff)
downloadsrc-9d93bf70ea18f22091a475439ec7fc062ad62df0.tar.gz
src-9d93bf70ea18f22091a475439ec7fc062ad62df0.zip
Move declaration of d_strategy_t to <sys/conf.h>.
Notes
Notes: svn path=/head/; revision=5050
-rw-r--r--sys/i386/i386/conf.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/i386/i386/conf.c b/sys/i386/i386/conf.c
index 1c188742fe57..f07332cbb883 100644
--- a/sys/i386/i386/conf.c
+++ b/sys/i386/i386/conf.c
@@ -41,7 +41,7 @@
* SUCH DAMAGE.
*
* from: @(#)conf.c 5.8 (Berkeley) 5/12/91
- * $Id: conf.c,v 1.43 1994/12/04 07:14:16 phk Exp $
+ * $Id: conf.c,v 1.44 1994/12/04 20:08:57 phk Exp $
*/
#include <sys/param.h>
@@ -53,9 +53,12 @@
#include <sys/tty.h>
#include <sys/conf.h>
+/*
+ * XXX move these to conf.h as in 1.1.5.
+ * d_strategy_t has already been moved (and fixed).
+ */
typedef int d_open_t __P((dev_t, int, int, struct proc *));
typedef int d_close_t __P((dev_t, int, int, struct proc *));
-typedef int d_strategy_t __P((struct buf *));
typedef int d_ioctl_t __P((dev_t, int, caddr_t, int, struct proc *));
typedef int d_dump_t __P(());
typedef int d_psize_t __P((dev_t));