summaryrefslogtreecommitdiff
path: root/lib/libm/lroundf.c
blob: 76a063be571e545635b8ea58197a9417162d511e (plain)
1
2
3
4
5
6
#include <math.h> // for lroundf, roundf

long lroundf(float x)
{
	return roundf(x);
}