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

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

double fabs(double x)
{
    return _fabs(x);
}