repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Expand PMF_FN_* macros.
[netbsd-mini2440.git]
/
sys
/
arch
/
sun68k
/
stand
/
bootyy
/
conf.c
blob
d9025f4134fc7e4f7dfc8119f82ae8a91daf8883
1
/* $NetBSD: conf.c,v 1.1 2001/06/14 12:57:13 fredette Exp $ */
2
3
#include <stand.h>
4
#include <dev_disk.h>
5
6
struct
devsw devsw
[] = {
7
{
"disk"
,
disk_strategy
,
disk_open
,
disk_close
,
disk_ioctl
},
8
};
9
int
ndevs
=
1
;
10
11
#ifdef DEBUG
12
int
debug
;
13
#endif
/* DEBUG */