xref: /original-bsd/sys/vax/stand/confxx.c (revision e59fb703)
1 /*
2  * Copyright (c) 1988 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)confxx.c	7.6 (Berkeley) 06/28/90
8  */
9 
10 int	xxstrategy(), xxopen(), xxioctl();
11 
12 struct devsw devsw[] = {
13 	{ "XX",	xxstrategy,	xxopen,		nullsys,	noioctl },
14 };
15 
16 int	ndevs = (sizeof(devsw) / sizeof(devsw[0]));
17