summaryrefslogtreecommitdiff
path: root/src/port/rint.c
blob: 9c4d77535729384560bec83b0b231999205fffc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*-------------------------------------------------------------------------
 *
 * rint.c
 *	  rint() implementation
 *
 * IDENTIFICATION
 *	  src/port/rint.c
 *
 *-------------------------------------------------------------------------
 */
#include "c.h"

#include <math.h>

double
rint(double x)
{
	return (x >= 0.0) ? floor(x + 0.5) : ceil(x - 0.5);
}