musl/src/math/lroundl.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 lroundl(long double x)
{
return roundl(x);
}