Kaydet (Commit) 76f2f2ef authored tarafından Guido van Rossum's avatar Guido van Rossum

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

üst 49e85146
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment