summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/sf_floor.c
blob: c5de7ca6a4637f0d2297786f9c071909f7728ca8 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/floorf.h"

float floorf(float value)
{
    return _floorf(value);
}