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