xref: /original-bsd/sys/i386/stand/confxx.c (revision 42c7e7a1)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * William Jolitz.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)confxx.c	7.3 (Berkeley) 05/04/91
11  */
12 
13 int	xxstrategy(), xxopen(), xxioctl();
14 
15 struct devsw devsw[] = {
16 	{ "XX",	xxstrategy,	xxopen,		nullsys,	noioctl },
17 };
18 
19 int	ndevs = (sizeof(devsw) / sizeof(devsw[0]));
20