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
commit 24b5fd4c4c
Notes: sideshowbarker 2024-07-19 09:03:44 +09:00
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);