summaryrefslogtreecommitdiff
path: root/module/ice-9/deprecated.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/ice-9/deprecated.scm')
-rw-r--r--module/ice-9/deprecated.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/module/ice-9/deprecated.scm b/module/ice-9/deprecated.scm
index f4ae2e365..4628bab98 100644
--- a/module/ice-9/deprecated.scm
+++ b/module/ice-9/deprecated.scm
@@ -26,6 +26,7 @@
$sqrt
$abs
$exp
+ $expt
$log
$sin
$cos
@@ -300,6 +301,10 @@
(issue-deprecation-warning
"`$exp' is deprecated. Use `exp' instead.")
(exp z))
+(define ($expt z1 z2)
+ (issue-deprecation-warning
+ "`$expt' is deprecated. Use `expt' instead.")
+ (expt z1 z2))
(define ($log z)
(issue-deprecation-warning
"`$log' is deprecated. Use `log' instead.")