aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Hugunin2020-09-09 12:48:07 -0700
committerJasper Hugunin2020-09-16 12:46:57 -0700
commitd0aea47877be293f96e4662824c5d4728c8334b7 (patch)
tree15fda556fbc5a6fb0e6252158ed9a3d7653b57ae
parenta75bf2d79391d5ab8b738da48e11db647bdec680 (diff)
Modify Arith/Mult.v to compile with -mangle-names
-rw-r--r--theories/Arith/Mult.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Arith/Mult.v b/theories/Arith/Mult.v
index 507d956e81..d7f703e6e4 100644
--- a/theories/Arith/Mult.v
+++ b/theories/Arith/Mult.v
@@ -158,7 +158,7 @@ Fixpoint mult_acc (s:nat) m n : nat :=
Lemma mult_acc_aux : forall n m p, m + n * p = mult_acc m p n.
Proof.
- induction n as [| n IHn]; simpl; auto.
+ intro n; induction n as [| n IHn]; simpl; auto.
intros. rewrite Nat.add_assoc, IHn. f_equal.
rewrite Nat.add_comm. apply plus_tail_plus.
Qed.