summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Modules/mathmodule.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index f6e7286..5a1cb85 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -93,7 +93,11 @@ FUNC2(math_fmod, fmod)
#endif
FUNC1(math_log, log)
FUNC1(math_log10, log10)
+#ifdef applec /* MPW */
+FUNC2(math_pow, power)
+#else
FUNC2(math_pow, pow)
+#endif
FUNC1(math_sin, sin)
FUNC1(math_sinh, sinh)
FUNC1(math_sqrt, sqrt)