cosmopolitan/libc/math/lroundl.c

9 lines
109 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#include "libc/math/math.h"
long lroundl(long double x) {
long y;
x = roundl(x);
y = x;
return y;
}