1995-09-23 07:42:17 +04:00
|
|
|
/* $NetBSD: conf.c,v 1.2 1995/09/23 03:42:50 gwr Exp $ */
|
1995-06-10 02:02:39 +04:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
1995-09-23 07:42:17 +04:00
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include "stand.h"
|
|
|
|
#include "nfs.h"
|
|
|
|
#include "dev_net.h"
|
1995-06-10 02:02:39 +04:00
|
|
|
|
|
|
|
struct fs_ops file_system[] = {
|
|
|
|
{ nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat },
|
|
|
|
};
|
|
|
|
int nfsys = 1;
|
|
|
|
|
|
|
|
struct devsw devsw[] = {
|
|
|
|
{ "net", net_strategy, net_open, net_close, net_ioctl },
|
|
|
|
};
|
|
|
|
int ndevs = 1;
|
|
|
|
|
|
|
|
/* XXX */
|
|
|
|
int netif_debug;
|
|
|
|
int debug;
|
|
|
|
int errno;
|