xref: /csrg-svn/sys/vax/stand/confhpup.c (revision 44544)
123222Smckusick /*
233524Sbostic  * Copyright (c) 1982, 1986, 1988 Regents of the University of California.
333524Sbostic  * All rights reserved.
423222Smckusick  *
5*44544Sbostic  * %sccs.include.redist.c%
633524Sbostic  *
7*44544Sbostic  *	@(#)confhpup.c	7.6 (Berkeley) 06/28/90
823222Smckusick  */
910725Ssam 
1033524Sbostic #include "param.h"
1110725Ssam #include "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