forked from KolibriOS/kolibrios
af35cc6783
git-svn-id: svn://kolibrios.org@6424 a494cfbc-eb01-0410-851d-a64ba20cac60
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);
|
|
}
|