141073Swilliam /*- 241073Swilliam * Copyright (c) 1990 The Regents of the University of California. 341073Swilliam * All rights reserved. 441073Swilliam * 541073Swilliam * This code is derived from software contributed to Berkeley by 641073Swilliam * William Jolitz. 741073Swilliam * 848817Swilliam * %sccs.include.redist.c% 941073Swilliam * 10*49075Sbostic * @(#)confxx.c 7.3 (Berkeley) 05/04/91 1141073Swilliam */ 1241073Swilliam 13*49075Sbostic int xxstrategy(), xxopen(), xxioctl(); 1441073Swilliam 1541073Swilliam struct devsw devsw[] = { 16*49075Sbostic { "XX", xxstrategy, xxopen, nullsys, noioctl }, 1741073Swilliam }; 18*49075Sbostic 19*49075Sbostic int ndevs = (sizeof(devsw) / sizeof(devsw[0])); 20