newlib/newlib/libm/machine/spu/sf_rint.c

8 lines
91 B
C

#include <math.h>
#include "headers/rintf.h"
float rintf(float x)
{
return _rintf(x);
}