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

20 lines
393 B
C

/* $NetBSD: conf.c,v 1.1.1.1 1997/03/13 16:27:28 gwr Exp $ */
#include <sys/types.h>
#include <netinet/in.h>
#include "stand.h"
#include "nfs.h"
#include "dev_net.h"
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;