msvcrt: Remove unnecessary FIXME comment

Zheng Chen chanchengcc at gmail.com
Sun Mar 22 23:57:39 CDT 2015


The problem has been solved.

---
 dlls/msvcrt/math.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/dlls/msvcrt/math.c b/dlls/msvcrt/math.c
index ea5b4e4..12a0be9 100644
--- a/dlls/msvcrt/math.c
+++ b/dlls/msvcrt/math.c
@@ -89,9 +89,6 @@ float CDECL MSVCRT__chgsignf( float num )
  */
 float CDECL MSVCRT__copysignf( float num, float sign )
 {
-    /* FIXME: Behaviour for signbit(NAN) is different in Linux and
-     *        Windows, where Windows gives a zero for -NAN
-     */
     if (signbit(sign))
         return signbit(num) ? num : -num;
     return signbit(num) ? -num : num;
@@ -1227,9 +1224,6 @@ int CDECL _controlfp_s(unsigned int *cur, unsigned
int newval, unsigned int mask
  */
 double CDECL MSVCRT__copysign(double num, double sign)
 {
-    /* FIXME: Behaviour for signbit(NAN) is different in Linux and
-     *        Windows, where Windows gives a zero for -NAN
-     */
     if (signbit(sign))
         return signbit(num) ? num : -num;
     return signbit(num) ? -num : num;
-- 
2.3.3
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.winehq.org/pipermail/wine-patches/attachments/20150323/9bdbe38c/attachment-0001.html>


More information about the wine-patches mailing list