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