summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/rintl.c
blob: ffc9d1107d1b5184f74c48aeb211f36f70b97ceb (plain)
1
2
3
4
5
6
7
#include <math.h>

long double rintl (long double x){
  long double retval;
  __asm__ ("frndint;": "=t" (retval) : "0" (x));
  return retval;
}