src/Pure/ML-Systems/smlnj-basis-compat.ML
author huffman
Wed, 08 Jun 2005 00:16:28 +0200
changeset 16316 17db5df51a35
parent 14656 765badface6a
child 17514 1d7771a659f6
permissions -rw-r--r--
renamed theorems less_ssum4a,b,c,d to more meaningful names

(*  Title:      Pure/ML-Systems/smlnj-basis-compat.ML
    ID:         $Id$
    Author:     Sebastian Skalberg (TU Muenchen)

Compatibility file for Standard ML of New Jersey 110.44 or later. Here
signatures that have changed to adhere to the SML Basis Library are
changed back to their old values. So much for standards...
*)

structure TextIO =
struct
open TextIO
fun inputLine is =
    case TextIO.inputLine is of
	SOME str => str
      | NONE => ""
end;