Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8283b650
Commit
8283b650
authored
Feb 05, 2010
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rewrite rint() to enable removal of copyright mention; patch from
Nathan Wagner Function is simpler too.
parent
f419a82c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
20 deletions
+2
-20
src/port/rint.c
src/port/rint.c
+2
-20
No files found.
src/port/rint.c
View file @
8283b650
...
...
@@ -3,11 +3,8 @@
* rint.c
* rint() implementation
*
* Copyright (c) 1999, repas AEG Automation GmbH
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/port/rint.c,v 1.
2 2003/11/29 19:52:13 pgsql
Exp $
* $PostgreSQL: pgsql/src/port/rint.c,v 1.
3 2010/02/05 03:20:56 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -18,20 +15,5 @@
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
;
return
(
x
>
0
.
0
)
?
floor
(
x
+
0
.
5
)
:
ceil
(
x
-
0
.
5
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment