summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/s_fabs.c
blob: 810f320a6e37e62ff7ca0bbd8f1a879f7fb3f664 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/fabs.h"

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