update for HEAD-2003021201
[reactos.git] / lib / msvcrt / float / chgsign.c
index 0fb4072..a8588a6 100644 (file)
@@ -1,9 +1,11 @@
 #include <msvcrt/float.h>
 #include <msvcrt/internal/ieee.h>
 
+
 double _chgsign( double __x )
 {
        double_t *x = (double_t *)&x;
+
        if ( x->sign == 1 )
                x->sign = 0;
        else