summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/s_fma.c
blob: 0dad63eee0ba9d35e4397dd1e31951182624c30f (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/fma.h"

double fma(double x, double y, double z)
{
    return _fma(x, y, z);
}