blob: 5dda34b300fb8c05fd0d04731f20eb1b5d2b3c4e (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $NetBSD: blkdev.h,v 1.1.1.1 2017/07/24 08:56:29 mrg 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) */
|