forked from KolibriOS/kolibrios
10 lines
135 B
C
10 lines
135 B
C
|
#include <math.h>
|
||
|
|
||
|
long double roundl (long double x)
|
||
|
{
|
||
|
if (x > 0)
|
||
|
return floor(x + 0.5);
|
||
|
else
|
||
|
return ceil(x - 0.5);
|
||
|
}
|