/* Copyright (c) 1991 Regents of the University of California */ #ifndef lint static char SCCSid[] = "$SunId$ LBL"; #endif /* * devtable.c - device table for rview. * * 3/30/88 */ #include "driver.h" char dev_default[] = "x11"; extern struct driver *x11_init(); struct device devtable[] = { /* supported devices */ {"slave", "Slave driver", comm_init}, {"x11", "X11 color or greyscale display", x11_init}, {"x11d", "X11 display using stdin/stdout", x11_init}, {0} /* terminator */ };