Home | History | Annotate | Line # | Download | only in include
math.h revision 1.1
      1  1.1  kleink /*	$NetBSD: math.h,v 1.1 1999/12/23 10:15:11 kleink Exp $	*/
      2  1.1  kleink 
      3  1.1  kleink /*
      4  1.1  kleink  * ISO C99
      5  1.1  kleink  */
      6  1.1  kleink #if !defined(_ANSI_SOURCE) && !defined(_POSIX_C_SOURCE) && \
      7  1.1  kleink     !defined(_XOPEN_SOURCE) || defined(_ISOC99_SOURCE)
      8  1.1  kleink extern const char	__nanf[];
      9  1.1  kleink #define	NAN		(*(const float *)(const void *)__nanf)
     10  1.1  kleink #endif
     11