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