Apparently MPW has power() instead of pow().

This commit is contained in:
Guido van Rossum 1991-06-24 22:23:10 +00:00
parent 49e85146e2
commit 76f2f2ef67

View file

@ -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)