mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-23 10:50:49 +00:00
LibM: Add some more math functions
This commit is contained in:
parent
07d976716f
commit
b97da17b90
Notes:
sideshowbarker
2024-07-19 05:27:39 +09:00
Author: https://github.com/stelar7
Commit: b97da17b90
Pull-request: https://github.com/SerenityOS/serenity/pull/2605
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/linusg
2 changed files with 73 additions and 0 deletions
|
@ -99,4 +99,15 @@ double frexp(double, int*);
|
|||
float frexpf(float, int*);
|
||||
long double frexpl(long double, int*);
|
||||
|
||||
double gamma(double);
|
||||
double expm1(double);
|
||||
double cbrt(double);
|
||||
double log1p(double);
|
||||
double acosh(double);
|
||||
double asinh(double);
|
||||
double atanh(double);
|
||||
double hypot(double, double);
|
||||
double erf(double);
|
||||
double erfc(double);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue