libc/newlib/libm/machine/spu/w_atanh.c

8 lines
93 B
C

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