Author: tkreuzer
Date: Fri Oct 15 12:33:08 2010
New Revision: 49153
URL:
http://svn.reactos.org/svn/reactos?rev=49153&view=rev
Log:
[CRT]
Add powf() wrapper
Added:
trunk/reactos/lib/sdk/crt/math/powf.c (with props)
Added: trunk/reactos/lib/sdk/crt/math/powf.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/math/powf.c?re…
==============================================================================
--- trunk/reactos/lib/sdk/crt/math/powf.c (added)
+++ trunk/reactos/lib/sdk/crt/math/powf.c [iso-8859-1] Fri Oct 15 12:33:08 2010
@@ -1,0 +1,11 @@
+/**
+ * This file has no copyright assigned and is placed in the Public Domain.
+ * 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>
+
+float powf(float x, float y)
+{
+ return (float)pow((double)x, (double)y);
+}
Propchange: trunk/reactos/lib/sdk/crt/math/powf.c
------------------------------------------------------------------------------
svn:eol-style = native