summaryrefslogtreecommitdiff
path: root/theories/Reals/Rpow_def.v
diff options
context:
space:
mode:
Diffstat (limited to 'theories/Reals/Rpow_def.v')
-rw-r--r--theories/Reals/Rpow_def.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Reals/Rpow_def.v b/theories/Reals/Rpow_def.v
index 90ea9726..c7d1893b 100644
--- a/theories/Reals/Rpow_def.v
+++ b/theories/Reals/Rpow_def.v
@@ -6,11 +6,11 @@
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
-(* $Id: Rpow_def.v 10923 2008-05-12 18:25:06Z herbelin $ *)
+(* $Id$ *)
Require Import Rdefinitions.
-Fixpoint pow (r:R) (n:nat) {struct n} : R :=
+Fixpoint pow (r:R) (n:nat) : R :=
match n with
| O => R1
| S n => Rmult r (pow r n)