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