summaryrefslogtreecommitdiffstats
path: root/Objects/floatobject.c
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-11-28 12:35:42 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-11-28 12:35:42 (GMT)
commita4962cb694c5fc7ae53f762a682cdc1ca72410ee (patch)
tree81707d1e151f05757e9eed909a71e4c40813852a /Objects/floatobject.c
parent1b83a45f90ca8ca7c525f122ed3078dc6c59c44a (diff)
downloadcpython-a4962cb694c5fc7ae53f762a682cdc1ca72410ee.zip
cpython-a4962cb694c5fc7ae53f762a682cdc1ca72410ee.tar.gz
cpython-a4962cb694c5fc7ae53f762a682cdc1ca72410ee.tar.bz2
Merged revisions 76561 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76561 | mark.dickinson | 2009-11-28 12:30:36 +0000 (Sat, 28 Nov 2009) | 5 lines Include ieeefp.h (when available) in pyport.h instead of individually in Objects/floatobject.c and Objects/complexobject.c. This should silence compiler warnings about implicit declaration of the 'finite' function on Solaris. ........
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 ff5c0f6..b281f81 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 */