Merge to trunk head (r46631)

svn path=/branches/reactos-yarotows/; revision=46633
This commit is contained in:
Timo Kreuzer 2010-04-01 02:52:00 +00:00
commit 49d7aed889
286 changed files with 48255 additions and 8326 deletions

View file

@ -11,7 +11,7 @@ frexp(double __x, int *exptr)
union
{
double* __x;
double_t* x;
double_s* x;
} x;
x.__x = &__x;

View file

@ -3,4 +3,4 @@
#include <internal/ieee.h>
#undef _HUGE
double_t _HUGE = { 0x00000, 0x00000, 0x7ff, 0x0 };
double_s _HUGE = { 0x00000, 0x00000, 0x7ff, 0x0 };

View file

@ -21,12 +21,12 @@ long double modfl(long double __x, long double *__i)
union
{
long double* __x;
long_double_t* x;
long_double_s* x;
} x;
union
{
long double* __i;
long_double_t* iptr;
long_double_s* iptr;
} iptr;
int j0;