#include <math.h>
Include dependency graph for nan.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | isnan(x) |
#define | isinf(x) |
#define | NAN (0.0/0.0) |
#define | PINF (1.0/0.0) |
#define | NINF (-1.0/0.0) |
|
Value: (sizeof (x) == sizeof (long double) ? isinf_ld (x) \ : sizeof (x) == sizeof (double) ? isinf_d (x) \ : isinf_f (x)) |
|
Value: (sizeof (x) == sizeof (long double) ? isnan_ld (x) \ : sizeof (x) == sizeof (double) ? isnan_d (x) \ : isnan_f (x)) Definition at line 8 of file nan.h. Referenced by parse_avpair(). |
|
|
|
|
|
|