aboutsummaryrefslogtreecommitdiff
path: root/src/tac2stdlib.ml
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2017-07-28 18:05:58 +0200
committerPierre-Marie Pédrot2017-07-28 18:29:10 +0200
commit8aef0199bed6fde2233704deda4116453fca869f (patch)
treeb516c942ec4f7a28edca57d4609f2f7beacfdaec /src/tac2stdlib.ml
parent4b863ed5a4c9545ecfd25dc22a83edd3c47aab80 (diff)
Moving the Ltac2 FFI to a separate file.
Diffstat (limited to 'src/tac2stdlib.ml')
-rw-r--r--src/tac2stdlib.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tac2stdlib.ml b/src/tac2stdlib.ml
index 89a8d98693..25d83c06fb 100644
--- a/src/tac2stdlib.ml
+++ b/src/tac2stdlib.ml
@@ -12,12 +12,14 @@ open Tac2expr
open Tac2core
open Proofview.Notations
+module Value = Tac2ffi
+
(** Standard tactics sharing their implementation with Ltac1 *)
let pname s = { mltac_plugin = "ltac2"; mltac_tactic = s }
let return x = Proofview.tclUNIT x
-let v_unit = Tac2core.Value.of_unit ()
+let v_unit = Value.of_unit ()
let lift tac = tac <*> return v_unit