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

extern const float  __half;

double  sinh ( double x )
{
    long double  y = exp (x);
    return (y - 1./y) * __half;
}