Commit 0750079a authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Use the nan()/nanf() implementation from the bundled musl library.

parent 4a441e7b
......@@ -9797,23 +9797,6 @@ float CDECL tgammaf(float x)
}
/*********************************************************************
* nan (MSVCR120.@)
*/
double CDECL nan(const char *tagp)
{
/* Windows ignores input (MSDN) */
return NAN;
}
/*********************************************************************
* nanf (MSVCR120.@)
*/
float CDECL nanf(const char *tagp)
{
return NAN;
}
/*********************************************************************
* _except1 (MSVCR120.@)
* TODO:
* - find meaning of ignored cw and operation bits
......
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