--- ray/src/rt/devtable.c 1989/03/15 14:01:55 1.2 +++ ray/src/rt/devtable.c 1994/09/12 15:47:17 2.3 @@ -1,4 +1,4 @@ -/* Copyright (c) 1988 Regents of the University of California */ +/* Copyright (c) 1991 Regents of the University of California */ #ifndef lint static char SCCSid[] = "$SunId$ LBL"; @@ -12,13 +12,13 @@ static char SCCSid[] = "$SunId$ LBL"; #include "driver.h" -extern struct driver *aed_init(), *x_init(), *sun_init(); +char dev_default[] = "x11"; +extern struct driver *x11_init(); + struct device devtable[] = { /* supported devices */ - {"aed", "AED 512 color graphics terminal", aed_init}, -#ifdef sun - {"sun", "SunView color or greyscale screen", sun_init}, -#endif - {"X", "X-window color or greyscale display", x_init}, + {"slave", "Slave driver", comm_init}, + {"x11", "X11 color or greyscale display", x11_init}, + {"x11d", "X11 display using stdin/stdout", x11_init}, {0} /* terminator */ };