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

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

float fmaxf(float x, float y)
{
    return _fmaxf(x, y);
}