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

LibM LibC: add fixes for Lua port.

This commit is contained in:
Mustafa Ali CAN 2019-05-29 07:20:04 -04:00 committed by Andreas Kling
parent 5fa8858dfb
commit 3ffb2ad4e0
4 changed files with 41 additions and 1 deletions

View file

@ -53,4 +53,12 @@ float ldexpf(float, int exp);
double pow(double x, double y);
double log2(double);
float log2f(float);
long double log2l(long double);
double frexp(double, int *);
float frexpf(float, int *);
long double frexpl(long double, int *);
__END_DECLS