[CRT]
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 28 Jan 2011 17:44:30 +0000 (17:44 +0000)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Fri, 28 Jan 2011 17:44:30 +0000 (17:44 +0000)
add a single prototype, instead of including math.h

svn path=/branches/cmake-bringup/; revision=50537

lib/sdk/crt/math/powf.c

index 55eb92a..e9cc35a 100644 (file)
@@ -3,7 +3,8 @@
  * This file is part of the w64 mingw-runtime package.
  * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  */
-#include <math.h>
+
+double __cdecl pow(double x, double y);
 
 float powf(float x, float y)
 {