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

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