summaryrefslogtreecommitdiff
path: root/sys/arch/sun3/stand/bootxx/conf.c
blob: a9f41061585a29b3ca00c23727e9463dc1cb1446 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*	$NetBSD: conf.c,v 1.2 1995/10/13 21:45:00 gwr Exp $	*/

#include <stand.h>
#include <dev_disk.h>

struct devsw devsw[] = {
	{ "disk", disk_strategy, disk_open, disk_close, disk_ioctl },
};
int	ndevs = 1;

int debug;