Use "#ifdef UFS_NOCLOSE/UFS_NOWRITE" instead of "#ifdef SMALL".
This commit is contained in:
parent
6932c61287
commit
63e306cbe7
|
@ -30,19 +30,21 @@
|
|||
*
|
||||
* filesystem.c
|
||||
*
|
||||
* $NetBSD: filesystem.c,v 1.2 1997/10/13 14:22:45 lukem Exp $
|
||||
* $NetBSD: filesystem.c,v 1.3 1999/02/22 10:18:40 simonb Exp $
|
||||
*/
|
||||
|
||||
#include <stand.h>
|
||||
#include <ufs.h>
|
||||
|
||||
struct fs_ops file_system[] = {
|
||||
#ifdef SMALL
|
||||
{ ufs_open, 0, ufs_read, 0, ufs_seek, ufs_stat }
|
||||
#else
|
||||
{ ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat }
|
||||
#ifdef UFS_NOCLOSE
|
||||
#define ufs_close 0
|
||||
#endif
|
||||
#ifdef UFS_NOWRITE
|
||||
#define ufs_write 0
|
||||
#endif
|
||||
|
||||
struct fs_ops file_system[] = {
|
||||
{ ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat }
|
||||
};
|
||||
|
||||
int nfsys = sizeof(file_system)/sizeof(struct fs_ops);
|
||||
|
||||
|
|
Loading…
Reference in New Issue