musl/src/math/lroundf.c
nsz afad262440 simplify lround and llround functions
Simple wrappers around round is enough because
spurious inexact exception is allowed.
2012-03-18 20:52:33 +01:00

7 lines
64 B
C

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