2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
* nanf () returns a nan.
|
|
|
|
* Added by Cygnus Support.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fdlibm.h"
|
|
|
|
|
2003-07-10 01:52:31 +08:00
|
|
|
float nanf(const char *unused)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
|
|
|
float x;
|
|
|
|
|
|
|
|
SET_FLOAT_WORD(x,0x7fc00000);
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _DOUBLE_IS_32BITS
|
|
|
|
|
2003-07-10 01:52:31 +08:00
|
|
|
double nan(const char *arg)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2003-07-10 01:52:31 +08:00
|
|
|
return (double) nanf(arg);
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* defined(_DOUBLE_IS_32BITS) */
|
2001-04-04 21:33:01 +08:00
|
|
|
|