summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/sf_fmax.c
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);
}