src/Pure/Thy/present.ML
changeset 6274 55e5bc91ae22
parent 6203 328b4377755c
child 6325 2822885f5e02
--- a/src/Pure/Thy/present.ML	Thu Feb 11 21:17:10 1999 +0100
+++ b/src/Pure/Thy/present.ML	Thu Feb 11 21:18:19 1999 +0100
@@ -13,13 +13,20 @@
 signature PRESENT =
 sig
   include BASIC_PRESENT
+  val init: bool -> string list -> string list -> string -> string -> unit
+  val finish: unit -> unit
+  val theory_file: string -> string -> unit
   val thm: string -> thm -> unit
 end;
 
 structure Present: PRESENT =
 struct
 
+fun init _ _ _ _ _ = ();
+fun finish _ = ();
+
 fun section _ = ();
+fun theory_file _ _ = ();
 fun thm _ _ = ();
 
 end;