141073Swilliam /*- 263368Sbostic * Copyright (c) 1990, 1993 363368Sbostic * The Regents of the University of California. All rights reserved. 4*65770Sbostic * (c) UNIX System Laboratories, Inc. 5*65770Sbostic * All or some portions of this file are derived from material licensed 6*65770Sbostic * to the University of California by American Telephone and Telegraph 7*65770Sbostic * Co. or Unix System Laboratories, Inc. and are reproduced herein with 8*65770Sbostic * the permission of UNIX System Laboratories, Inc. 941073Swilliam * 1041073Swilliam * This code is derived from software contributed to Berkeley by 1141073Swilliam * William Jolitz. 1241073Swilliam * 1348817Swilliam * %sccs.include.redist.c% 1441073Swilliam * 15*65770Sbostic * @(#)confxx.c 8.2 (Berkeley) 01/21/94 1641073Swilliam */ 1741073Swilliam 1849075Sbostic int xxstrategy(), xxopen(), xxioctl(); 1941073Swilliam 2041073Swilliam struct devsw devsw[] = { 2149075Sbostic { "XX", xxstrategy, xxopen, nullsys, noioctl }, 2241073Swilliam }; 2349075Sbostic 2449075Sbostic int ndevs = (sizeof(devsw) / sizeof(devsw[0])); 25