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

This commit is contained in:
Alexandre Julliard 2023-04-03 17:09:18 +02:00
parent 4a441e7b41
commit 0750079ace

View file

@ -9796,23 +9796,6 @@ float CDECL tgammaf(float x)
return tgamma(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: