2011-05-16 13:12:07 +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.
|
|
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
|
2021-07-10 11:24:42 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma function(sqrtf)
|
|
|
|
#endif
|
|
|
|
|
2015-05-14 19:44:50 +00:00
|
|
|
_Check_return_
|
2011-05-16 13:12:07 +00:00
|
|
|
float
|
2015-05-14 19:44:50 +00:00
|
|
|
__cdecl
|
|
|
|
sqrtf(float x)
|
2011-05-16 13:12:07 +00:00
|
|
|
{
|
2015-05-14 19:44:50 +00:00
|
|
|
return (float)sqrt((double)x);
|
2011-05-16 13:12:07 +00:00
|
|
|
}
|