aboutsummaryrefslogtreecommitdiff
path: root/src/port/rint.c
blob: ff5aab087a0f31628ba22d1d485494adda820b6e (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
 *	  $PostgreSQL: pgsql/src/port/rint.c,v 1.3 2010/02/05 03:20:56 momjian Exp $
 *
 *-------------------------------------------------------------------------
 */

#include "c.h"
#include <math.h>

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