2010-10-15 12:33:08 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2011-02-10 11:35:05 +00:00
|
|
|
|
2015-05-14 20:20:59 +00:00
|
|
|
#if defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_AMD64))
|
|
|
|
#pragma warning(suppress:4164) /* intrinsic not declared */
|
|
|
|
#pragma function(powf)
|
|
|
|
#endif /* _MSC_VER */
|
|
|
|
|
2011-02-10 11:35:05 +00:00
|
|
|
double __cdecl pow(double x, double y);
|
2010-10-15 12:33:08 +00:00
|
|
|
|
|
|
|
float powf(float x, float y)
|
|
|
|
{
|
|
|
|
return (float)pow((double)x, (double)y);
|
|
|
|
}
|