2002-07-29 05:00:10 +02:00
|
|
|
#include <math.h>
|
2004-04-22 06:38:24 +02:00
|
|
|
#include <limits.h>
|
|
|
|
#include <errno.h>
|
2002-06-13 12:20:48 +02:00
|
|
|
|
2002-07-29 05:00:10 +02:00
|
|
|
long
|
2004-04-22 06:38:24 +02:00
|
|
|
lround (double x)
|
|
|
|
{
|
|
|
|
/* Add +/- 0.5 then then round towards zero. */
|
|
|
|
double tmp = trunc (x + (x >= 0.0 ? 0.5 : -0.5));
|
|
|
|
if (!isfinite (tmp)
|
|
|
|
|| tmp > (double)LONG_MAX
|
|
|
|
|| tmp < (double)LONG_MIN)
|
|
|
|
{
|
|
|
|
errno = ERANGE;
|
|
|
|
/* Undefined behaviour, so we could return anything. */
|
|
|
|
/* return tmp > 0.0 ? LONG_MAX : LONG_MIN; */
|
|
|
|
}
|
|
|
|
return (long)tmp;
|
2002-06-13 12:20:48 +02:00
|
|
|
}
|