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