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

LibM: Add the gamma family of functions

This commit is contained in:
Mițca Dumitru 2021-03-14 19:54:01 +02:00 committed by Andreas Kling
parent 7aac174bc8
commit 93c554f6bd
2 changed files with 91 additions and 0 deletions

View file

@ -179,6 +179,16 @@ long double erfcl(long double) NOEXCEPT;
double erfc(double) NOEXCEPT;
float erfcf(float) NOEXCEPT;
double gamma(double) NOEXCEPT;
long double tgammal(long double) NOEXCEPT;
double tgamma(double) NOEXCEPT;
float tgammaf(float) NOEXCEPT;
long double lgammal(long double) NOEXCEPT;
double lgamma(double) NOEXCEPT;
float lgammaf(float) NOEXCEPT;
long double lgammal_r(long double, int*) NOEXCEPT;
double lgamma_r(double, int*) NOEXCEPT;
float lgammaf_r(float, int*) NOEXCEPT;
extern int signgam;
/* Nearest integer floating point operations */
long double ceill(long double) NOEXCEPT;