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

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