#include <stdio.h>#include <math.h>#include "machine.h"#include "Os_specific.h"Include dependency graph for isanan.c:

Go to the source code of this file.
Functions | |
| integer C2F() | isanan (double *x) |
| integer C2F() isanan | ( | double * | x | ) |
Definition at line 18 of file isanan.c.
References x.
Referenced by idcmp_equal(), idcmp_great(), idcmp_greatequal(), idcmp_less(), idcmp_lessequal(), idcmp_lessgreat(), and nlinear_interp().
00019 { 00020 #ifdef _ISANAN 00021 return(_isnan(*x)== 1); 00022 #else 00023 return((!( *x <= 1.0 )) && (!( *x >= 1.0 ))); 00024 #endif 00025 }
Here is the caller graph for this function:

1.5.1