blob: 507df600c1e4a4d3fb4bc2078e97bd23e40bcf22 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $NetBSD: blkdev.h,v 1.3 2009/03/17 18:43:43 he Exp $ */
#if 0 /* folded into devopen */
int blkdevopen(struct open_file *, ...);
#endif
int blkdevstrategy(void *, int, daddr_t, size_t, void *, size_t *);
#if !defined(LIBSA_NO_FS_CLOSE)
int blkdevclose(struct open_file *);
#endif /* defined(LIBSA_NO_FS_CLOSE) */
|