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

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

double fmin(double x, double y)
{
    return _fmin(x, y);
}