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

long lround(double x)
{
	return round(x);
}