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

// FIXME: incorrect exception behavior

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