summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-10-27 07:06:59 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-10-27 07:06:59 (GMT)
commit64cd9efd80679a4ccd6a50c4e916913222816239 (patch)
treeea6cc1eeb9627d50656fc9f26652672ab51dbfe4 /Modules
parent2ec1df27855435f42a2181aef9d25b73e72a9e2b (diff)
downloadcpython-64cd9efd80679a4ccd6a50c4e916913222816239.zip
cpython-64cd9efd80679a4ccd6a50c4e916913222816239.tar.gz
cpython-64cd9efd80679a4ccd6a50c4e916913222816239.tar.bz2
Get DBL_MAX from float.h not values.h.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_testcapimodule.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index c5068ef..edfe8ad 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -6,9 +6,7 @@
*/
#include "Python.h"
-#ifdef HAVE_VALUES_H
-#include <values.h>
-#endif
+#include <float.h>
#include "structmember.h"
#ifdef WITH_THREAD