musl/src/math/llroundl.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
76 B
C

#include <math.h>
long long llroundl(long double x)
{
return roundl(x);
}