[PATCH 2/2] msvcr120: Add remainder

Piotr Caban piotr.caban at gmail.com
Mon Apr 4 07:28:00 CDT 2016


On 04/02/16 02:09, Daniel Lehman wrote:
> +/*********************************************************************
> + *      remainder (MSVCR120.@)
> + */
> +double CDECL MSVCR120_remainder(double x, double y)
> +{
> +#ifdef HAVE_REMAINDER
> +    return remainder(x, y);
> +#else
> +    FIXME( "not implemented\n" );
> +    return 0.0;
> +#endif
Please handle y==0 case.

Thanks,
Piotr



More information about the wine-devel mailing list