Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / arch / sun68k / stand / ufsboot / conf.c
blobd09f4dfc95cd667e7459082f15ae7a6eaa7ec7c0
1 /* $NetBSD: conf.c,v 1.4 2005/12/11 12:19:29 christos Exp $ */
3 #include <stand.h>
4 #include <ufs.h>
5 #include <dev_disk.h>
7 #include "libsa.h"
9 struct fs_ops file_system[] = {
10 FS_OPS(ufs),
12 int nfsys = 1;
14 struct devsw devsw[] = {
15 { "disk", disk_strategy, disk_open, disk_close, disk_ioctl },
17 int ndevs = 1;
19 int
20 main(void)
23 xxboot_main("ufsboot");
25 return 0;