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