b8b795470f1868d831e7c2893c7f3b7f019ddbdb
[musl] / lround.c
1 #include <math.h>
2
3 long lround(double x)
4 {
5         return round(x);
6 }