summaryrefslogtreecommitdiff
path: root/checklink/Library.ml
diff options
context:
space:
mode:
authorGravatar varobert <varobert@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2012-07-12 12:06:19 +0000
committerGravatar varobert <varobert@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2012-07-12 12:06:19 +0000
commitc7739571407c3d99f1de390c518a8726889f4b70 (patch)
treec8c680618aac82990f42c87f79f4384c2d2cd409 /checklink/Library.ml
parentf45af3286a61ceae85160639097da6776ce66098 (diff)
checklink: configuration, indicate external symbols
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1970 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'checklink/Library.ml')
-rw-r--r--checklink/Library.ml1
1 files changed, 1 insertions, 0 deletions
diff --git a/checklink/Library.ml b/checklink/Library.ml
index 2c7a337..c38c1f1 100644
--- a/checklink/Library.ml
+++ b/checklink/Library.ml
@@ -6,6 +6,7 @@ type bitstring = Bitstring.bitstring
module IntMap = Map.Make(struct type t = int let compare = compare end)
module StringMap = Map.Make (String)
+module StringSet = Set.Make (String)
let is_some: 'a option -> bool = function
| Some(_) -> true