summaryrefslogtreecommitdiff
path: root/Objects/floatobject.c
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2011-04-20 22:26:57 +0200
committerJesus Cea <jcea@jcea.es>2011-04-20 22:26:57 +0200
commit2fc8b8749952144679b1f60ee8f9cfdd01d911a7 (patch)
tree854562cab8fa60edb13aa3709bade0be73a39944 /Objects/floatobject.c
parentc3ab577f347b290e1af37e5bd7748e8d3f5c2589 (diff)
downloadcpython-git-2fc8b8749952144679b1f60ee8f9cfdd01d911a7.tar.gz
Port 5b607cd8c71b (closes #11892)
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r--Objects/floatobject.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c
index 6a2af743af..8161ed51e2 100644
--- a/Objects/floatobject.c
+++ b/Objects/floatobject.c
@@ -15,10 +15,6 @@
#define MAX(x, y) ((x) < (y) ? (y) : (x))
#define MIN(x, y) ((x) < (y) ? (x) : (y))
-#ifdef HAVE_IEEEFP_H
-#include <ieeefp.h>
-#endif
-
#ifdef _OSF_SOURCE
/* OSF1 5.1 doesn't make this available with XOPEN_SOURCE_EXTENDED defined */