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

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

double fmax(double x, double y)
{
    return _fmax(x, y);
}