[WINED3D]

* Remove unneeded powf.c and sqrtf.c.

svn path=/trunk/; revision=56533
This commit is contained in:
Amine Khaldi 2012-05-07 18:49:59 +00:00
parent 3548ba4554
commit 2afe0c85bb
2 changed files with 0 additions and 22 deletions

View file

@ -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 <math.h>
float powf(float x, float y)
{
return (float)pow((double)x, (double)y);
}

View file

@ -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 <math.h>
float sqrtf(float x)
{
return (float)sqrt((double)x);
}