math.h revision 1.1
1/*	$NetBSD: math.h,v 1.1 1999/12/23 10:15: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)
8extern const char	__nanf[];
9#define	NAN		(*(const float *)(const void *)__nanf)
10#endif
11