cosmopolitan/libc/math/lroundl.c
2020-06-15 07:18:57 -07:00

8 lines
109 B
C

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