diff options
Diffstat (limited to 'lib/dyn.mli')
-rw-r--r-- | lib/dyn.mli | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/dyn.mli b/lib/dyn.mli index 3ddde2b6..4a713472 100644 --- a/lib/dyn.mli +++ b/lib/dyn.mli @@ -1,6 +1,6 @@ (************************************************************************) (* v * The Coq Proof Assistant / The Coq Development Team *) -(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2014 *) +(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2015 *) (* \VV/ **************************************************************) (* // * This file is distributed under the terms of the *) (* * GNU Lesser General Public License Version 2.1 *) @@ -12,3 +12,5 @@ type t val create : string -> ('a -> t) * (t -> 'a) val tag : t -> string +val has_tag : t -> string -> bool +val pointer_equal : t -> t -> bool |