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

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