musl/src/math/llroundf.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

6 lines
70 B
C

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