mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-11 06:59:29 -04:00
14 lines
253 B
C
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 */
|