blob: 69a28e08823b281315440dd039a1bffe33c169b2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* $NetBSD: blkdev.h,v 1.3 2009/03/16 23:46:12 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) */
|