[PATCH] msvcrt: Implement nearbyint and nearbyintf

Piotr Caban piotr.caban at gmail.com
Thu Nov 17 10:16:57 CST 2016


Hi Stefan,


On 17/11/16 08:15, Stefan Silviu wrote:
>   /*********************************************************************
> + *		_nearbyint (MSVCRT.@)
> + */
> +double CDECL MSVCRT_nearbyint(double num)
> +{
> +  return nearbyint(num);
> +}
>
The nearbyint function is not available in C89 standard. Could you 
please implement the function without using it or do something similar 
as in MSVCR120_rint?

Thank you,
Piotr



More information about the wine-devel mailing list