diff options
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r-- | Objects/floatobject.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 20f1510..745dfc3 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -12,6 +12,10 @@ #include <ctype.h> #include <float.h> +#ifdef HAVE_IEEEFP_H +#include <ieeefp.h> +#endif + #if !defined(__STDC__) extern double fmod(double, double); extern double pow(double, double); |