mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
521a0aa9a8
* mingwex/math/roundf.c: Rewrite. * mingwex/math/roundl.c: Rewrite.
9 lines
146 B
C
9 lines
146 B
C
#include <math.h>
|
|
|
|
double
|
|
round (double x)
|
|
{
|
|
/* Add +/- 0.5 then then round towards zero. */
|
|
return trunc ( x + (x >= 0.0 ? 0.5 : -0.5));
|
|
}
|