branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / math / atanh.c
index fdfb319..ee12288 100644 (file)
@@ -1,8 +1,8 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/math.h>
+#include <msvcrt/math.h>
 
-double
-atanh(double x)
+
+double atanh(double x)
 {
   return log((1+x)/(1-x)) / 2.0;
 }