update for HEAD-2003021201
[reactos.git] / lib / msvcrt / math / frexp.c
index 27de8a3..b85cd98 100644 (file)
@@ -5,14 +5,15 @@
 double
 frexp(double __x, int *exptr)
 {
-  double_t *x = (double_t *)&__x;
-
-  if (exptr != NULL)
-    *exptr = x->exponent - 0x3FE;
-
-  x->exponent = 0x3FE;
-
-  return __x;
+       double_t *x = (double_t *)&__x;
+       
+       if ( exptr != NULL )
+               *exptr = x->exponent - 0x3FE;
+               
+       
+       x->exponent = 0x3FE;
+       
+       return __x; 
 }