NetBSD/sys/arch/sun3/stand/netboot/conf.c

20 lines
389 B
C
Raw Normal View History

/* $NetBSD: conf.c,v 1.3 1996/01/29 23:54:14 gwr Exp $ */
1995-06-10 02:02:39 +04:00
#include <sys/types.h>
#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;