aboutsummaryrefslogtreecommitdiff
path: root/src/tac2core.mli
diff options
context:
space:
mode:
Diffstat (limited to 'src/tac2core.mli')
-rw-r--r--src/tac2core.mli30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/tac2core.mli b/src/tac2core.mli
deleted file mode 100644
index 9fae65bb3e..0000000000
--- a/src/tac2core.mli
+++ /dev/null
@@ -1,30 +0,0 @@
-(************************************************************************)
-(* v * The Coq Proof Assistant / The Coq Development Team *)
-(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016 *)
-(* \VV/ **************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(************************************************************************)
-
-open Tac2expr
-
-(** {5 Hardwired data} *)
-
-module Core :
-sig
-
-val t_list : type_constant
-val c_nil : ltac_constructor
-val c_cons : ltac_constructor
-
-val t_int : type_constant
-val t_option : type_constant
-val t_string : type_constant
-val t_array : type_constant
-
-val c_true : ltac_constructor
-val c_false : ltac_constructor
-
-end
-
-val pf_apply : (Environ.env -> Evd.evar_map -> 'a Proofview.tactic) -> 'a Proofview.tactic