blob: 3b3b95490c5bd425ab3997802ebf3e40d0f61acc (
plain)
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
|
(****************************************************************************)
(* *)
(* OCaml *)
(* *)
(* INRIA Rocquencourt *)
(* *)
(* Copyright 2006 Institut National de Recherche en Informatique et *)
(* en Automatique. All rights reserved. This file is distributed under *)
(* the terms of the GNU Library General Public License, with the special *)
(* exception on linking described in LICENSE at the top of the OCaml *)
(* source tree. *)
(* *)
(****************************************************************************)
(* Authors:
* - Daniel de Rauglaudre: initial version
* - Nicolas Pouillard: refactoring
*)
module Id = struct
value name = "Camlp4.Printers.Null";
value version = Sys.ocaml_version;
end;
module Make (Syntax : Sig.Syntax) = struct
include Syntax;
value print_interf ?input_file:(_) ?output_file:(_) _ = ();
value print_implem ?input_file:(_) ?output_file:(_) _ = ();
end;
|