summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/sf_fma.c
blob: 45dbcba4ac4829f6e7018457063e1e47baa9ff89 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/fmaf.h"

float fmaf(float x, float y, float z)
{
    return _fmaf(x, y, z);
}