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