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

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