mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Apparently MPW has power() instead of pow().
This commit is contained in:
parent
49e85146e2
commit
76f2f2ef67
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue