Files
semi-libc/src/math/lroundl.c
T
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
70 B
C

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