xref: /original-bsd/sys/i386/stand/confxx.c (revision 3705696b)
1 /*-
2  * Copyright (c) 1990, 1993
3  *	The Regents of the University of California.  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	8.1 (Berkeley) 06/11/93
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