(* Copyright (C) 1990, Digital Equipment Corporation. *) (* All rights reserved. *) (* See the file COPYRIGHT for a full description. *) (* Last modified on Wed Aug 19 15:00:32 PDT 1992 by rustan *) (* modified on Sat Oct 6 02:01:36 1990 by muller *) INTERFACE IO; IMPORT Text; PROCEDURE PutChar( c: CHAR ); PROCEDURE PutInt( i: INTEGER ); PROCEDURE PutHexa( i: INTEGER ); PROCEDURE PutAddr( a: ADDRESS ); PROCEDURE PutChars( c: UNTRACED REF CHAR; n: INTEGER ); PROCEDURE PutText( t: Text.T ); PROCEDURE PutTime(); END IO.