xref: /haiku/src/system/libroot/posix/musl/math/lround.c (revision 15fb7d88e971c4d6c787c6a3a5c159afb1ebf77b)
1 #include <math.h>
2 
3 long lround(double x)
4 {
5 	return round(x);
6 }
7