amiga-ixemul/static/rint.c

6 lines
57 B
C

double rint(double x)
{
return floor(x + 0.5);
}