summaryrefslogtreecommitdiff
path: root/src/math/llrintf.c
blob: e41b6d41862304f09e6fe00c0cc788ade8940065 (plain) (blame)
1
2
3
4
5
6
7
8
#include <math.h>

/* assumes LLONG_MAX > 2^24, see comments in lrint.c */

long long llrintf(float x)
{
	return rintf(x);
}