1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:27:44 +00:00

LibM: Add exp2() and exp2f()

This commit is contained in:
Linus Groh 2020-06-04 14:38:44 +01:00 committed by Andreas Kling
parent ead76377b0
commit c883bab62a
2 changed files with 12 additions and 0 deletions

View file

@ -74,6 +74,8 @@ double fmod(double, double);
float fmodf(float, float);
double exp(double);
float expf(float);
double exp2(double);
float exp2f(float);
double frexp(double, int* exp);
float frexpf(float, int* exp);
double log(double);