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