only use memcpy realloc to shrink if an exact-sized free chunk exists
[oweals/musl.git] / src / math / i386 / rint.c
1 #include <math.h>
2
3 double rint(double x)
4 {
5         __asm__ ("frndint" : "+t"(x));
6         return x;
7 }