From 6fa23913f15ca6d005e916978197100875a9bbcc Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 15 Oct 2010 12:33:08 +0000 Subject: [PATCH] [CRT] Add powf() wrapper svn path=/trunk/; revision=49153 --- reactos/lib/sdk/crt/math/powf.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 reactos/lib/sdk/crt/math/powf.c diff --git a/reactos/lib/sdk/crt/math/powf.c b/reactos/lib/sdk/crt/math/powf.c new file mode 100644 index 00000000000..55eb92a2e3f --- /dev/null +++ b/reactos/lib/sdk/crt/math/powf.c @@ -0,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 + +float powf(float x, float y) +{ + return (float)pow((double)x, (double)y); +}