kolibrios/programs/develop/ktcc/trunk/libc/math/round.c

10 lines
124 B
C
Raw Normal View History

#include <math.h>
double round (double x)
{
if (x > 0)
return floor(x + 0.5);
else
return ceil(x - 0.5);
}