From 2afe0c85bbaea5e95c459c39ce267fb3c8ec24e5 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Mon, 7 May 2012 18:49:59 +0000 Subject: [PATCH] [WINED3D] * Remove unneeded powf.c and sqrtf.c. svn path=/trunk/; revision=56533 --- reactos/dll/directx/wine/wined3d/powf.c | 11 ----------- reactos/dll/directx/wine/wined3d/sqrtf.c | 11 ----------- 2 files changed, 22 deletions(-) delete mode 100644 reactos/dll/directx/wine/wined3d/powf.c delete mode 100644 reactos/dll/directx/wine/wined3d/sqrtf.c diff --git a/reactos/dll/directx/wine/wined3d/powf.c b/reactos/dll/directx/wine/wined3d/powf.c deleted file mode 100644 index 55eb92a2e3f..00000000000 --- a/reactos/dll/directx/wine/wined3d/powf.c +++ /dev/null @@ -1,11 +0,0 @@ -/** - * 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); -} diff --git a/reactos/dll/directx/wine/wined3d/sqrtf.c b/reactos/dll/directx/wine/wined3d/sqrtf.c deleted file mode 100644 index 512e9aeea67..00000000000 --- a/reactos/dll/directx/wine/wined3d/sqrtf.c +++ /dev/null @@ -1,11 +0,0 @@ -/** - * 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 sqrtf(float x) -{ - return (float)sqrt((double)x); -}