src/Pure/ML-Systems/polyml-4.1.4-patch.ML
changeset 23139 aa899bce7c3b
parent 23138 6852373aae8a
child 23140 f6927a08a02b
--- a/src/Pure/ML-Systems/polyml-4.1.4-patch.ML	Wed May 30 23:32:54 2007 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-(*  Title:      Pure/ML-Systems/polyml-4.1.4-patch.ML
-    ID:         $Id$
-
-Basis library fixes for Poly/ML 4.2.0 or later.
-*)
-
-structure Posix =
-struct
-  open Posix;
-  structure IO =
-  struct
-    open IO;
-    val mkReader = mkTextReader;
-    val mkWriter = mkTextWriter;
-  end;
-end;
-
-structure TextIO =
-struct
-  open TextIO;
-  fun inputLine is = Option.getOpt (TextIO.inputLine is, "");
-end;
-
-structure Substring =
-struct
-  open Substring;
-  val all = full;
-end;