summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/rint.c
blob: 3198f4b26ca7e1432ed367897997c6dc969ebc81 (plain)
1
2
3
4
5
6
#include <math.h>
double rint (double x){
  double retval;
  __asm__ ("frndint;" : "=t" (retval) : "0" (x));
  return retval;
}