summaryrefslogblamecommitdiff
path: root/src/math/lrintf.c
blob: 34d1081c0fbf1a1fe98cb94f158f7036d45605ec (plain) (tree)
1
2
3
4
5
6
7
8
                 
 





                                                      
#include <math.h>

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

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