X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fcrtdll%2Fmath%2Ftanh.c;h=da1eabb8acec05f226470ab37bcc5a99f39756a8;hb=03af8776dc14167b078911b0c7c5327d1bcdd128;hp=12b001281045f09e53725bd860165424a64d8b73;hpb=f4077c1bf64ef89d74a8d4822d2d7aada3ba9927;p=reactos.git diff --git a/lib/crtdll/math/tanh.c b/lib/crtdll/math/tanh.c index 12b0012..da1eabb 100644 --- a/lib/crtdll/math/tanh.c +++ b/lib/crtdll/math/tanh.c @@ -1,5 +1,6 @@ /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */ -#include + +#include double tanh(double x) { @@ -14,4 +15,3 @@ double tanh(double x) return (ebig - esmall) / (ebig + esmall); } } -