Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sf_floor.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5de7ca6a4637f0d2297786f9c071909f7728ca8 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/floorf.h"

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