cosmopolitan/libc/math/llroundl.c

7 lines
86 B
C

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