mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-01 04:57:03 +03:00
10 lines
124 B
C
10 lines
124 B
C
|
#include <math.h>
|
||
|
|
||
|
double round (double x)
|
||
|
{
|
||
|
if (x > 0)
|
||
|
return floor(x + 0.5);
|
||
|
else
|
||
|
return ceil(x - 0.5);
|
||
|
}
|