summaryrefslogtreecommitdiff
path: root/lib/libm/llroundl.c
blob: e344aa0840c5da0c72cb743dafc7623179e6b83f (plain)
1
2
3
4
5
6
#include <math.h> // for llroundl, roundl

long long llroundl(long double x)
{
	return roundl(x);
}