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

s_fma.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}