mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:07:36 +00:00
LibM: Improve accuracy of rounding related functions
Patch from Anonymous.
This commit is contained in:
parent
edd2362f39
commit
6622ad8895
2 changed files with 112 additions and 40 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue