mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:47:34 +00:00
LibM: Add remainder{f, l}
These just forward their arguments to fmod, but I think that should be fine.
This commit is contained in:
parent
e4197b7854
commit
32b9437c13
2 changed files with 19 additions and 0 deletions
|
@ -107,6 +107,9 @@ float fabsf(float) NOEXCEPT;
|
|||
long double fmodl(long double, long double) NOEXCEPT;
|
||||
double fmod(double, double) NOEXCEPT;
|
||||
float fmodf(float, float) NOEXCEPT;
|
||||
long double remainderl(long double, long double) NOEXCEPT;
|
||||
double remainder(double, double) NOEXCEPT;
|
||||
float remainderf(float, float) NOEXCEPT;
|
||||
long double nanl(const char*) NOEXCEPT;
|
||||
double nan(const char*) NOEXCEPT;
|
||||
float nanf(const char*) NOEXCEPT;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue