aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Hugunin2020-10-09 20:15:07 -0700
committerJasper Hugunin2020-10-11 19:05:14 -0700
commitaf7b79f52f0f9d900142930114b02a34b9091a78 (patch)
treebc4bedca94d469ee69867d519e5b8a7e0bd86949
parentda93dcfaecc6475f2cda7109cf6f664db03ee351 (diff)
Modify ZArith/Zabs.v to compile with -mangle-names
-rw-r--r--theories/ZArith/Zabs.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/ZArith/Zabs.v b/theories/ZArith/Zabs.v
index 21086d9b61..f869e15023 100644
--- a/theories/ZArith/Zabs.v
+++ b/theories/ZArith/Zabs.v
@@ -49,12 +49,12 @@ Qed.
Theorem Zabs_intro : forall P (n:Z), P (- n) -> P n -> P (Z.abs n).
Proof.
- now destruct n.
+ intros P n; now destruct n.
Qed.
Definition Zabs_dec : forall x:Z, {x = Z.abs x} + {x = - Z.abs x}.
Proof.
- destruct x; auto.
+ intros x; destruct x; auto.
Defined.
Lemma Zabs_spec x :