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
commit 6622ad8895
Notes: sideshowbarker 2024-07-18 22:35:09 +09:00
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;