[PATCH] msvcrt: Implement fma and fmaf

Piotr Caban piotr.caban at gmail.com
Tue May 14 06:37:43 CDT 2019


Hi Andrew,

On 5/13/19 5:23 PM, Andrew Eikum wrote:
> +/*********************************************************************
> + *      fma (MSVCRT.@)
> + */
> +double CDECL MSVCRT_fma( double x, double y, double z )
> +{
> +  return fma(x, y, z);
> +}
Shouldn't the function set errno? Also this is a C99 function so it 
should be probably checked if it's available.

Thanks,
Piotr



More information about the wine-devel mailing list