blob: 196d23b7fda8ddc003a0e6f1b76a47c7a73d0378 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
(* Title: Pure/ML-Systems/polyml-4.1.4-patch.ML
ID: $Id$
Author: Makarius
Patch for PolyML 4.1.4 to make it work with Isabelle2005. We commit
this into ML_dbase!
*)
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;
|