Retro68/gcc/newlib/libm/machine/spu/sf_lrint.c

8 lines
99 B
C
Raw Normal View History

#include <math.h>
#include "headers/lrintf.h"
long int lrintf(float x)
{
return _lrintf(x);
}