1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:57:42 +00:00

LibM: Implement floating point variants of various math functions

This commit is contained in:
Valtteri Koskivuori 2020-02-25 21:02:22 +02:00 committed by Andreas Kling
parent 3b8713a9df
commit 24b5fd4c4c
2 changed files with 55 additions and 0 deletions

View file

@ -84,6 +84,7 @@ double ldexp(double, int exp);
float ldexpf(float, int exp);
double pow(double x, double y);
float powf(float x, float y);
double log2(double);
float log2f(float);