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

double  tanh ( double x )
{
    long double  y = exp (x + x);
    return (y - 1.) / (y + 1.);
}