Correct the sense of the test for LIBSA_NO_FS_CLOSE

so that this builds again.
This commit is contained in:
he 2009-03-17 18:43:43 +00:00
parent 98ae204731
commit 75306d0938
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: blkdev.h,v 1.2 2009/03/14 14:45:53 dsl Exp $ */
/* $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)
#if !defined(LIBSA_NO_FS_CLOSE)
int blkdevclose(struct open_file *);
#endif /* defined(LIBSA_NO_FS_CLOSE) */