Welcome to mirror list, hosted at ThFree Co, Russian Federation.

round.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2d4cab5e7e3998c16b91d11842a6992c722feb1 (plain)
1
2
3
4
5
6
7
8
#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));
}