diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 07:06:59 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 07:06:59 (GMT) |
commit | 64cd9efd80679a4ccd6a50c4e916913222816239 (patch) | |
tree | ea6cc1eeb9627d50656fc9f26652672ab51dbfe4 /Modules | |
parent | 2ec1df27855435f42a2181aef9d25b73e72a9e2b (diff) | |
download | cpython-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.c | 4 |
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 |