Retro68/gcc/newlib/libm/machine/spu/s_fabs.c

8 lines
92 B
C
Raw Normal View History

#include <math.h>
#include "headers/fabs.h"
double fabs(double x)
{
return _fabs(x);
}