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