mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
LibM: Add (not very good) round() implementation
This commit is contained in:
parent
fa40b725f9
commit
e97a229b90
1 changed files with 8 additions and 0 deletions
|
@ -389,6 +389,14 @@ long double frexpl(long double, int*)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
double round(double value)
|
||||||
|
{
|
||||||
|
// FIXME: Please fix me. I am naive.
|
||||||
|
if (value >= 0.0)
|
||||||
|
return (double)(int)(value + 0.5);
|
||||||
|
return (double)(int)(value - 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
float roundf(float value)
|
float roundf(float value)
|
||||||
{
|
{
|
||||||
// FIXME: Please fix me. I am naive.
|
// FIXME: Please fix me. I am naive.
|
||||||
|
|
Loading…
Add table
Reference in a new issue