: waf	2/3/84
: This script attempts to initialize the terminal.
: ** Currently no attempt is made to determine the terminal type **

: The script "usr/tac/src/terminit.ls" should be included in the users .profile.
:   The codes returned by this script for different terminals are shown in that
:   file, and are used by the terminit.ls script to set the TERM variable.

echo '** Initializing terminal...'
: ** Find term type.
: ** Set TERM var.

: Hardwired to return code for DG term
case 1 in

1)	d200
	exit 1 ;;

*)	echo 'terminit: bad termtype code.' ;;

esac

exit 0
