1241211Sdelphij/*	$NetBSD: conf.c,v 1.1 2001/06/14 12:57:12 fredette Exp $	*/
2241211Sdelphij
3241211Sdelphij#include <stand.h>
4241211Sdelphij#include <dev_disk.h>
5241211Sdelphij
6241211Sdelphijstruct devsw devsw[] = {
7241211Sdelphij	{ "disk", disk_strategy, disk_open, disk_close, disk_ioctl },
8241211Sdelphij};
9241211Sdelphijint	ndevs = 1;
10241211Sdelphij
11241211Sdelphij#ifdef DEBUG
12241211Sdelphijint debug;
13241211Sdelphij#endif /* DEBUG */
14241211Sdelphij