update for HEAD-2003021201
[reactos.git] / lib / crtdll / math / asinh.c
index 7089ebc..402c46e 100644 (file)
@@ -1,9 +1,8 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/math.h>
+#include <msvcrt/math.h>
 
-double
-asinh(double x)
+
+double asinh(double x)
 {
-  return x>0 ? log(x + sqrt(x*x + 1)) : -log(sqrt(x*x+1)-x);
+    return x>0 ? log(x + sqrt(x*x + 1)) : -log(sqrt(x*x+1)-x);
 }
-