Go to the documentation of this file.
35 #define M_PI 3.14159265358979323846
41 #define M_1_PI (1/M_PI)
44 #if defined (HAVE_MATH_H)
47 #if defined (HAVE_FINITE) || defined (BSD)
48 #define FINITE( x ) ( finite( x ) )
49 #define ISNAN( x ) ( isnan( x ) )
51 #define FINITE( x ) ( _finite( x ) )
52 #define ISNAN( x ) ( _isnan( x ) )