aboutsummaryrefslogtreecommitdiff
path: root/theories/String.v
diff options
context:
space:
mode:
authorMaxime Dénès2019-04-25 12:02:43 +0200
committerMaxime Dénès2019-04-25 12:09:44 +0200
commit66b6e83f4f4c32ad86333e13d65329be02c46048 (patch)
treea7c2ae2edfe69f8a207d990b6f34f7a497615a27 /theories/String.v
parent5131640774d0256a390790b5becc864935585ce8 (diff)
Prepare merge into Coq
Diffstat (limited to 'theories/String.v')
-rw-r--r--theories/String.v14
1 files changed, 0 insertions, 14 deletions
diff --git a/theories/String.v b/theories/String.v
deleted file mode 100644
index 99e1dab76b..0000000000
--- a/theories/String.v
+++ /dev/null
@@ -1,14 +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 *)
-(************************************************************************)
-
-Require Import Ltac2.Init.
-
-Ltac2 @external make : int -> char -> string := "ltac2" "string_make".
-Ltac2 @external length : string -> int := "ltac2" "string_length".
-Ltac2 @external get : string -> int -> char := "ltac2" "string_get".
-Ltac2 @external set : string -> int -> char -> unit := "ltac2" "string_set".