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

8 lines
95 B
C

#include <math.h>
#include "headers/floor.h"
double floor(double x)
{
return _floor(x);
}