mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:47:44 +00:00
LibM: Implement floating point variants of various math functions
This commit is contained in:
parent
3b8713a9df
commit
24b5fd4c4c
2 changed files with 55 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue