--- ray/src/rt/devtable.c 1989/03/15 14:20:33 1.3 +++ ray/src/rt/devtable.c 1991/03/06 17:16:54 1.9 @@ -12,11 +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}, - {"sun", "SunView color or greyscale screen", sun_init}, - {"X", "X-window color or greyscale display", x_init}, + {"sun", "SunView color or greyscale screen", comm_init}, + {"x10", "X10 color or greyscale display", comm_init}, + {"x11", "X11 color or greyscale display", x11_init}, {0} /* terminator */ };