blob: 8d717425b2e7acac5dad686292f887a7e26c5bdc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*-------------------------------------------------------------------------
*
* rint.c
* rint() implementation
*
* Copyright (c) 1999, repas AEG Automation GmbH
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/port/qnx/Attic/rint.c,v 1.1 1999/12/16 01:25:06 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <math.h>
#include "os.h"
double rint(double x)
{
double f, n = 0.;
f = modf( x, &n );
if( x > 0. ) {
if( f > .5 ) n += 1.;
}
else if( x < 0. ) {
if( f < -.5 ) n -= 1.;
}
return n;
}
|