aboutsummaryrefslogtreecommitdiff
path: root/newlib/libm/common/sf_nan.c
blob: c8d7027f826efa330c405437516c82a52c6f519e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * nanf () returns a nan.
 * Added by Cygnus Support.
 */

#include "fdlibm.h"

	float nanf()
{
	float x;

	SET_FLOAT_WORD(x,0x7fc00000);
	return x;
}

#ifdef _DOUBLE_IS_32BITS

	double nan()
{
	return (double) nanf();
}

#endif /* defined(_DOUBLE_IS_32BITS) */