Hack for Mac (where fabs is not usable as a function pointer).

This commit is contained in:
Guido van Rossum 1996-08-08 19:10:21 +00:00
parent 97867b2ce2
commit 6412b1de5d
1 changed files with 5 additions and 0 deletions

View File

@ -145,7 +145,12 @@ FUNC1(math_ceil, ceil)
FUNC1(math_cos, cos)
FUNC1(math_cosh, cosh)
FUNC1(math_exp, exp)
#ifdef __MWERKS__
double myfabs(double x) { return fabs(x); }
FUNC1(math_fabs, myfabs)
#else
FUNC1(math_fabs, fabs)
#endif
FUNC1(math_floor, floor)
FUNC2(math_fmod, fmod)
FUNC2(math_hypot, hypot)