libc/newlib/libm/common/sf_nan.c

29 lines
365 B
C
Raw Normal View History

2000-02-17 20:39:52 +01:00
/*
* nanf () returns a nan.
* Added by Cygnus Support.
*/
#include "fdlibm.h"
float nanf(const char *unused)
2000-02-17 20:39:52 +01:00
{
float x;
#if __GNUC_PREREQ (3, 3)
x = __builtin_nanf("");
#else
2000-02-17 20:39:52 +01:00
SET_FLOAT_WORD(x,0x7fc00000);
#endif
2000-02-17 20:39:52 +01:00
return x;
}
#ifdef _DOUBLE_IS_32BITS
double nan(const char *arg)
2000-02-17 20:39:52 +01:00
{
return (double) nanf(arg);
2000-02-17 20:39:52 +01:00
}
#endif /* defined(_DOUBLE_IS_32BITS) */