mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 20:53:02 +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
|
@ -28,7 +28,7 @@ int _isnan(double __x)
|
|||
union
|
||||
{
|
||||
double* __x;
|
||||
double_t* x;
|
||||
double_s* x;
|
||||
} x;
|
||||
x.__x = &__x;
|
||||
return ( x.x->exponent == 0x7ff && ( x.x->mantissah != 0 || x.x->mantissal != 0 ));
|
||||
|
@ -41,7 +41,7 @@ int _isnanl(long double __x)
|
|||
union
|
||||
{
|
||||
long double* __x;
|
||||
long_double_t* x;
|
||||
long_double_s* x;
|
||||
} x;
|
||||
x.__x = &__x;
|
||||
|
||||
|
@ -59,7 +59,7 @@ int _isinf(double __x)
|
|||
union
|
||||
{
|
||||
double* __x;
|
||||
double_t* x;
|
||||
double_s* x;
|
||||
} x;
|
||||
|
||||
x.__x = &__x;
|
||||
|
@ -81,7 +81,7 @@ int _isinfl(long double __x)
|
|||
union
|
||||
{
|
||||
long double* __x;
|
||||
long_double_t* x;
|
||||
long_double_s* x;
|
||||
} x;
|
||||
|
||||
x.__x = &__x;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue