mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:07:36 +00:00
LibM: Implement the missing parts of the round family
This commit is contained in:
parent
03b2d30836
commit
c9601cdee3
2 changed files with 36 additions and 0 deletions
|
@ -123,6 +123,12 @@ long double truncl(long double) NOEXCEPT;
|
|||
double round(double) NOEXCEPT;
|
||||
float roundf(float) NOEXCEPT;
|
||||
long double roundl(long double) NOEXCEPT;
|
||||
long lroundf(float) NOEXCEPT;
|
||||
long lround(double) NOEXCEPT;
|
||||
long lroundl(long double) NOEXCEPT;
|
||||
long long llroundf(float) NOEXCEPT;
|
||||
long long llround(double) NOEXCEPT;
|
||||
long long llroundd(long double) NOEXCEPT;
|
||||
double rint(double) NOEXCEPT;
|
||||
float rintf(float) NOEXCEPT;
|
||||
long lrintl(long double) NOEXCEPT;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue