blob: 29ec7cbf091b7517c8a17a58598c662968d91544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* $NetBSD: conf.c,v 1.1.1.1 1995/06/01 20:38:08 gwr Exp $ */
#include <sys/types.h>
#include <machine/prom.h>
#include <stand.h>
#include <ufs.h>
#include "libsa.h"
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);
struct devsw devsw[] = {
{ "bugsc", bugscstrategy, bugscopen, bugscclose, bugscioctl },
};
int ndevs = (sizeof(devsw)/sizeof(devsw[0]));
|