7 lines
86 B
C
7 lines
86 B
C
#include "libc/math/math.h"
|
|
|
|
long long llroundl(long double x)
|
|
{
|
|
return roundl(x);
|
|
}
|