Re: [PATCH 2/2] msvcr120: Add remainder
4 Apr
2016
4 Apr
'16
12:28 p.m.
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
3541
Age (days ago)
3541
Last active (days ago)
0 comments
1 participants
participants (1)
-
Piotr Caban