math.h revision 1.2
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)) 11extern __const char __nanf[]; 12#define NAN (*(__const float *)(__const void *)__nanf) 13#endif 14