kolibrios/contrib/sdk/sources/newlib/libc/math/sf_nan.c
Sergey Semyonov (Serge) 846fce0120 set default newlib dir's structure
git-svn-id: svn://kolibrios.org@4874 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-04-22 09:02:02 +00:00

25 lines
302 B
C

/*
* nanf () returns a nan.
* Added by Cygnus Support.
*/
#include "fdlibm.h"
float nanf(const char *unused)
{
float x;
SET_FLOAT_WORD(x,0x7fc00000);
return x;
}
#ifdef _DOUBLE_IS_32BITS
double nan(const char *arg)
{
return (double) nanf(arg);
}
#endif /* defined(_DOUBLE_IS_32BITS) */