summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libm/atanh.c
blob: bdb3367be5147889d6cd4af66c76d9faa83e2658 (plain)
1
2
3
4
5
6
7
8
#include <math.h>

extern const float  __half;

double  atanh ( double x )
{
    return __half * log ( (1.+x) / (1.-x) );
}