xref: /csrg-svn/sys/vax/stand/confhpup.c (revision 45803)
123222Smckusick /*
233524Sbostic  * Copyright (c) 1982, 1986, 1988 Regents of the University of California.
333524Sbostic  * All rights reserved.
423222Smckusick  *
544544Sbostic  * %sccs.include.redist.c%
633524Sbostic  *
7*45803Sbostic  *	@(#)confhpup.c	7.7 (Berkeley) 12/16/90
823222Smckusick  */
910725Ssam 
10*45803Sbostic #include "sys/param.h"
11*45803Sbostic #include "stand/saio.h"
1210725Ssam 
1333524Sbostic int	nullsys();
1410725Ssam int	hpstrategy(), hpopen(), hpioctl();
1510725Ssam int	upstrategy(), upopen(), upioctl();
1610725Ssam 
1710725Ssam struct devsw devsw[] = {
1810725Ssam 	{ "hp",	hpstrategy,	hpopen,		nullsys,	hpioctl },
1910725Ssam 	{ "up",	upstrategy,	upopen,		nullsys,	upioctl },
2010725Ssam 	{ 0, 0, 0, 0, 0 }
2110725Ssam };
2232210Skarels 
2332210Skarels int	ndevs = (sizeof(devsw) / sizeof(devsw[0]) - 1);
24