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