diff options
| author | Jasper Hugunin | 2020-10-09 20:15:07 -0700 |
|---|---|---|
| committer | Jasper Hugunin | 2020-10-11 19:05:14 -0700 |
| commit | af7b79f52f0f9d900142930114b02a34b9091a78 (patch) | |
| tree | bc4bedca94d469ee69867d519e5b8a7e0bd86949 | |
| parent | da93dcfaecc6475f2cda7109cf6f664db03ee351 (diff) | |
Modify ZArith/Zabs.v to compile with -mangle-names
| -rw-r--r-- | theories/ZArith/Zabs.v | 4 |
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 : |
