math.h revision 1.3
1/* $NetBSD: math.h,v 1.3 2000/02/05 14:04:41 kleink Exp $ */ 2 3/* 4 * ISO C99 5 */ 6#if !defined(_ANSI_SOURCE) && \ 7 (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE) || \ 8 defined(_ISOC99_SOURCE) || (__STDC_VERSION__ - 0) >= 199901L) 9extern __const char __nanf[]; 10#define NAN (*(__const float *)(__const void *)__nanf) 11#endif 12