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

double  acosh ( double x )
{
    return log ( x + sqrt (x*x - 1.) );
}