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