mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:38:11 +00:00
LibM: Implement nearbyint, nearbyintl and nearbyintf
These are used by the ultima engine for scummvm.
This commit is contained in:
parent
d2662df57c
commit
ac9dbcda97
1 changed files with 15 additions and 0 deletions
|
@ -1413,4 +1413,19 @@ float fminf(float x, float y) NOEXCEPT
|
|||
|
||||
return x < y ? x : y;
|
||||
}
|
||||
|
||||
long double nearbyintl(long double value) NOEXCEPT
|
||||
{
|
||||
return internal_to_integer(value, RoundingMode { fegetround() });
|
||||
}
|
||||
|
||||
double nearbyint(double value) NOEXCEPT
|
||||
{
|
||||
return internal_to_integer(value, RoundingMode { fegetround() });
|
||||
}
|
||||
|
||||
float nearbyintf(float value) NOEXCEPT
|
||||
{
|
||||
return internal_to_integer(value, RoundingMode { fegetround() });
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue