X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fmath%2Fatanh.c;h=ee1228826ad4aa64a3de08c1abf06843c33de675;hp=fdfb3194cf9c55addd3fc728ed48ad5ba0e4f38e;hb=03af8776dc14167b078911b0c7c5327d1bcdd128;hpb=f4077c1bf64ef89d74a8d4822d2d7aada3ba9927 diff --git a/lib/crtdll/math/atanh.c b/lib/crtdll/math/atanh.c index fdfb319..ee12288 100644 --- a/lib/crtdll/math/atanh.c +++ b/lib/crtdll/math/atanh.c @@ -1,8 +1,8 @@ /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ -#include +#include -double -atanh(double x) + +double atanh(double x) { return log((1+x)/(1-x)) / 2.0; }