xref: /original-bsd/sys/i386/stand/confxx.c (revision 333da485)
1 /*-
2  * Copyright (c) 1990, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * This code is derived from software contributed to Berkeley by
11  * William Jolitz.
12  *
13  * %sccs.include.redist.c%
14  *
15  *	@(#)confxx.c	8.2 (Berkeley) 01/21/94
16  */
17 
18 int	xxstrategy(), xxopen(), xxioctl();
19 
20 struct devsw devsw[] = {
21 	{ "XX",	xxstrategy,	xxopen,		nullsys,	noioctl },
22 };
23 
24 int	ndevs = (sizeof(devsw) / sizeof(devsw[0]));
25