forked from KolibriOS/kolibrios
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);
|
||
|
}
|