[PATCH 7/9] msvcr120: Add erfc.

Piotr Caban piotr.caban at gmail.com
Tue Jul 11 07:11:08 CDT 2017


On 07/10/17 06:55, Alex Henrie wrote:
>   /*********************************************************************
> + *      erfc (MSVCR120.@)
> + */
> +double CDECL MSVCR120_erfc(double x)
> +{
> +#ifdef HAVE_ERFC
> +    return erfc(x);
> +#else
> +    FIXME( "not implemented\n" );
> +    return 0.0;
> +#endif
You can return 1.0 - MSVCR120_erf(x) if erfc is not available.

Thanks,
Piotr



More information about the wine-devel mailing list