As __MINGW32__ now indirectly implies :win32, numlib.lsp defines hyperbolics for us.

This commit is contained in:
Samium Gromoff 2009-04-23 23:47:10 +04:00 committed by Juan Jose Garcia Ripoll
parent 24f9101f83
commit f783b8897c

View file

@ -61,29 +61,6 @@ log1pl(long double x)
}
#endif
#ifdef mingw32
/*
* Mingw32 does not implement asinh, acosh and atanh.
*/
double
asinh(double x)
{
return log(x + sqrt(1.0 + x*x));
}
double
acosh(double x)
{
return log(x + sqrt((x-1)*(x+1)));
}
double
atanh(double x)
{
return log1p(2*x/(1-x))/2;
}
#endif /* mingw32 */
cl_object
ecl_abs(cl_object x)
{