Updating include path in files previously missed.
[reactos.git] / reactos / lib / crtdll / math / cosh.c
index 85e95f0..10fadd6 100644 (file)
@@ -1,8 +1,9 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/math.h>
+#include <msvcrt/math.h>
+
 
 double cosh(double x)
 {
-  const double ebig = exp(fabs(x));
-  return (ebig + 1.0/ebig) / 2.0;
+    const double ebig = exp(fabs(x));
+    return (ebig + 1.0/ebig) / 2.0;
 }