cosmopolitan/libc/math/lroundl.c

9 lines
109 B
C

#include "libc/math/math.h"
long lroundl(long double x) {
long y;
x = roundl(x);
y = x;
return y;
}