mirror of
https://github.com/reactos/reactos.git
synced 2025-07-29 15:42:19 +00:00
Merge to trunk head (r46631)
svn path=/branches/reactos-yarotows/; revision=46633
This commit is contained in:
commit
49d7aed889
286 changed files with 48255 additions and 8326 deletions
|
@ -11,7 +11,7 @@ frexp(double __x, int *exptr)
|
|||
union
|
||||
{
|
||||
double* __x;
|
||||
double_t* x;
|
||||
double_s* x;
|
||||
} x;
|
||||
|
||||
x.__x = &__x;
|
||||
|
|
|
@ -3,4 +3,4 @@
|
|||
#include <internal/ieee.h>
|
||||
|
||||
#undef _HUGE
|
||||
double_t _HUGE = { 0x00000, 0x00000, 0x7ff, 0x0 };
|
||||
double_s _HUGE = { 0x00000, 0x00000, 0x7ff, 0x0 };
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue