only use memcpy realloc to shrink if an exact-sized free chunk exists
[oweals/musl.git] / src / math / lround.c
1 #include <math.h>
2
3 long lround(double x)
4 {
5         return round(x);
6 }