aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorfilliatr1999-09-03 09:53:11 +0000
committerfilliatr1999-09-03 09:53:11 +0000
commit05074a8ee576e155596cf0c8bb3c8372a4dfa086 (patch)
tree0a63aa5ab3f6c50dcb9b76a8611dc517320628f8 /lib
parent010a1652d7f0072b057235507c0efd5b7284574f (diff)
modules Libobject et Summary (partiel)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@36 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib')
-rw-r--r--lib/util.ml2
-rw-r--r--lib/util.mli2
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/util.ml b/lib/util.ml
index 95a609378f..6983410978 100644
--- a/lib/util.ml
+++ b/lib/util.ml
@@ -61,6 +61,8 @@ let parse_section_path s =
let id,k = decoupe_kind n in
dirs,id,k
+module Stringmap = Map.Make(struct type t = string let compare = compare end)
+
(* Lists *)
let list_intersect l1 l2 =
diff --git a/lib/util.mli b/lib/util.mli
index 9517d8742e..2d764d4999 100644
--- a/lib/util.mli
+++ b/lib/util.mli
@@ -23,6 +23,8 @@ val implode : string list -> string
val parse_section_path : string -> string list * string * string
+module Stringmap : Map.S with type key = string
+
(*s Lists. *)
val list_intersect : 'a list -> 'a list -> 'a list