libc/newlib/libm/machine/spu/sf_lround.c

8 lines
102 B
C

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