1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:07:45 +00:00

LibM: Improve accuracy of rounding related functions

Patch from Anonymous.
This commit is contained in:
Andreas Kling 2021-02-05 09:09:00 +01:00
parent edd2362f39
commit 6622ad8895
2 changed files with 112 additions and 40 deletions

View file

@ -90,6 +90,8 @@ double ceil(double) NOEXCEPT;
float ceilf(float) NOEXCEPT;
double floor(double) NOEXCEPT;
float floorf(float) NOEXCEPT;
double trunc(double) NOEXCEPT;
float truncf(float) NOEXCEPT;
double round(double) NOEXCEPT;
float roundf(float) NOEXCEPT;
double fabs(double) NOEXCEPT;