musl-tcc/src/math/lroundf.c
2022-03-20 16:48:53 +08:00

7 lines
64 B
C

#include <math.h>
long lroundf(float x)
{
return roundf(x);
}