xref: /aosp_15_r20/external/musl/src/math/lroundf.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <math.h>
2 
lroundf(float x)3 long lroundf(float x)
4 {
5 	return roundf(x);
6 }
7