branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / math / tanh.c
index 12b0012..da1eabb 100644 (file)
@@ -1,5 +1,6 @@
 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#include <crtdll/math.h>
+
+#include <msvcrt/math.h>
 
 double tanh(double x)
 {
@@ -14,4 +15,3 @@ double tanh(double x)
     return (ebig - esmall) / (ebig + esmall);
   }
 }
-