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