xref: /netbsd-src/sys/arch/hppa/include/math.h (revision d710132b4b8ce7f7cccaaf660cb16aa16b4077a0)
1 /*	$NetBSD: math.h,v 1.2 2003/04/28 23:16:19 bjh21 Exp $	*/
2 
3 #include <sys/featuretest.h>
4 
5 /*
6  * ISO C99
7  */
8 #if !defined(_ANSI_SOURCE) && \
9     (defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) >= 199901L || \
10      defined(_NETBSD_SOURCE))
11 extern __const char	__nanf[];
12 #define	NAN		(*(__const float *)(__const void *)__nanf)
13 #endif
14