xref: /netbsd-src/sys/arch/sparc/include/math.h (revision 95d875fb90b1458e4f1de6950286ddcd6644bc61)
1 /*	$NetBSD: math.h,v 1.2 2000/01/04 14:20:15 kleink Exp $	*/
2 
3 /*
4  * ISO C99
5  */
6 #if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
7     !defined(_XOPEN_SOURCE) || defined(_ISOC99_SOURCE)
8 extern __const char	__nanf[];
9 #define	NAN		(*(__const float *)(__const void *)__nanf)
10 #endif
11