--- ray/src/rt/devtable.c 1990/03/09 14:00:05 1.6 +++ ray/src/rt/devtable.c 1991/12/13 10:42:37 2.2 @@ -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,14 +12,14 @@ static char SCCSid[] = "$SunId$ LBL"; #include "driver.h" -char dev_default[] = "X"; +char dev_default[] = "x11"; -extern struct driver *aed_init(), *x_init(); +extern struct driver *x11_init(); struct device devtable[] = { /* supported devices */ - {"aed", "AED 512 color graphics terminal", aed_init}, - {"sundev", "SunView color or greyscale screen", comm_init}, - {"X", "X10 color or greyscale display", x_init}, - {"x11dev", "X11 color or greyscale display", comm_init}, + {"aed", "AED 512 color graphics terminal", comm_init}, + {"news", "NeWS color or greyscale screen", comm_init}, + {"sun", "SunView color or greyscale screen", comm_init}, + {"x11", "X11 color or greyscale display", x11_init}, {0} /* terminator */ };