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

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

float fminf(float x, float y)
{
    return _fminf(x, y);
}