Commit 233eea6c authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Use the fdim()/fdimf() implementation from the bundled musl library.

parent 5564512b
......@@ -8858,30 +8858,6 @@ float CDECL erfcf(float x)
}
/*********************************************************************
* fdimf (MSVCR120.@)
*/
float CDECL fdimf(float x, float y)
{
if(isnan(x))
return x;
if(isnan(y))
return y;
return x>y ? x-y : 0;
}
/*********************************************************************
* fdim (MSVCR120.@)
*/
double CDECL fdim(double x, double y)
{
if(isnan(x))
return x;
if(isnan(y))
return y;
return x>y ? x-y : 0;
}
/*********************************************************************
* _fdsign (MSVCR120.@)
*/
int CDECL _fdsign(float x)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment