2013-04-06 16:48:33 +02:00

14 lines
253 B
C

/* $NetBSD: conf.c,v 1.2 2002/05/15 04:07:43 lukem Exp $ */
#include <stand.h>
#include <dev_disk.h>
struct devsw devsw[] = {
{ "disk", disk_strategy, disk_open, disk_close, disk_ioctl },
};
int ndevs = 1;
#ifdef DEBUG
int debug;
#endif /* DEBUG */