141073Swilliam /*- 2*63368Sbostic * Copyright (c) 1990, 1993 3*63368Sbostic * The Regents of the University of California. 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*63368Sbostic * @(#)confxx.c 8.1 (Berkeley) 06/11/93 1141073Swilliam */ 1241073Swilliam 1349075Sbostic int xxstrategy(), xxopen(), xxioctl(); 1441073Swilliam 1541073Swilliam struct devsw devsw[] = { 1649075Sbostic { "XX", xxstrategy, xxopen, nullsys, noioctl }, 1741073Swilliam }; 1849075Sbostic 1949075Sbostic int ndevs = (sizeof(devsw) / sizeof(devsw[0])); 20