123222Smckusick /* 2*33525Sbostic * Copyright (c) 1988 Regents of the University of California. 3*33525Sbostic * All rights reserved. 423222Smckusick * 5*33525Sbostic * Redistribution and use in source and binary forms are permitted 6*33525Sbostic * provided that this notice is preserved and that due credit is given 7*33525Sbostic * to the University of California at Berkeley. The name of the University 8*33525Sbostic * may not be used to endorse or promote products derived from this 9*33525Sbostic * software without specific prior written permission. This software 10*33525Sbostic * is provided ``as is'' without express or implied warranty. 11*33525Sbostic * 12*33525Sbostic * @(#)confxx.c 7.4 (Berkeley) 02/22/88 1323222Smckusick */ 147465Skre 1510024Ssam int xxstrategy(), xxopen(), xxioctl(); 1610024Ssam 177465Skre struct devsw devsw[] = { 18*33525Sbostic { "XX", xxstrategy, xxopen, nullsys, noioctl }, 197465Skre }; 2032200Skarels 2133409Skarels int ndevs = (sizeof(devsw) / sizeof(devsw[0])); 22