1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:37:35 +00:00

LibM: Add some more math functions

This commit is contained in:
stelar7 2020-06-21 09:45:48 +02:00 committed by Andreas Kling
parent 07d976716f
commit b97da17b90
2 changed files with 73 additions and 0 deletions

View file

@ -99,4 +99,15 @@ double frexp(double, int*);
float frexpf(float, int*);
long double frexpl(long double, int*);
double gamma(double);
double expm1(double);
double cbrt(double);
double log1p(double);
double acosh(double);
double asinh(double);
double atanh(double);
double hypot(double, double);
double erf(double);
double erfc(double);
__END_DECLS