libc/newlib/libm/common/sf_isnan.c

46 lines
842 B
C
Raw Normal View History

/* sf_c_isnan.c -- float version of s_c_isnan.c.
2000-02-17 20:39:52 +01:00
*/
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
*
* Developed at SunPro, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
* software is freely granted, provided that this notice
* is preserved.
* ====================================================
*/
/*
* isnanf(x) returns 1 is x is nan, else 0;
*
* isnanf is an extension declared in <math.h>.
2000-02-17 20:39:52 +01:00
*/
#include "fdlibm.h"
#include <ieeefp.h>
#undef isnanf
2000-02-17 20:39:52 +01:00
int
isnanf (float x)
2000-02-17 20:39:52 +01:00
{
__int32_t ix;
GET_FLOAT_WORD(ix,x);
ix &= 0x7fffffff;
return FLT_UWORD_IS_NAN(ix);
2000-02-17 20:39:52 +01:00
}
#ifdef _DOUBLE_IS_32BITS
#undef isnan
int
isnan (double x)
2000-02-17 20:39:52 +01:00
{
return isnanf((float) x);
}
#endif /* defined(_DOUBLE_IS_32BITS) */