1 /* $NetBSD: conf.c,v 1.1.1.1 1995/07/25 23:12:25 chuck Exp $ */ 2 3 #include <sys/types.h> 4 #include <stand.h> 5 #include <nfs.h> 6 #include <dev_net.h> 7 8 struct fs_ops file_system[] = { 9 { nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat }, 10 }; 11 int nfsys = 1; 12 13 struct devsw devsw[] = { 14 { "net", net_strategy, net_open, net_close, net_ioctl }, 15 }; 16 int ndevs = 1; 17 18 /* XXX */ 19 int netif_debug; 20 int debug; 21 int errno; 22