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:
parent
5fa8858dfb
commit
3ffb2ad4e0
4 changed files with 41 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue