Author: akhaldi Date: Mon May 7 18:49:59 2012 New Revision: 56533
URL: http://svn.reactos.org/svn/reactos?rev=56533&view=rev Log: [WINED3D] * Remove unneeded powf.c and sqrtf.c.
Removed: trunk/reactos/dll/directx/wine/wined3d/powf.c trunk/reactos/dll/directx/wine/wined3d/sqrtf.c
Removed: trunk/reactos/dll/directx/wine/wined3d/powf.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/wine/wined3d/po... ============================================================================== --- trunk/reactos/dll/directx/wine/wined3d/powf.c [iso-8859-1] (original) +++ trunk/reactos/dll/directx/wine/wined3d/powf.c (removed) @@ -1,11 +1,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 <math.h> - -float powf(float x, float y) -{ - return (float)pow((double)x, (double)y); -}
Removed: trunk/reactos/dll/directx/wine/wined3d/sqrtf.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/wine/wined3d/sq... ============================================================================== --- trunk/reactos/dll/directx/wine/wined3d/sqrtf.c [iso-8859-1] (original) +++ trunk/reactos/dll/directx/wine/wined3d/sqrtf.c (removed) @@ -1,11 +1,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 <math.h> - -float sqrtf(float x) -{ - return (float)sqrt((double)x); -}