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

sf_fabs.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bffc44b03925f077846896687873b9b3d3b0ab78 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/fabsf.h"

float fabsf(float value)
{
    return _fabsf(value);
}