diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 07:06:52 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 07:06:52 (GMT) |
commit | 0347a9a49193f292b1aff0bbda2b33d96c459a39 (patch) | |
tree | 307279a6d4016e1e5a8571a3d8fd774924be44f6 /Modules | |
parent | 443ccc73f37ecdff058972cfff32f68ff3f50b3b (diff) | |
download | cpython-0347a9a49193f292b1aff0bbda2b33d96c459a39.zip cpython-0347a9a49193f292b1aff0bbda2b33d96c459a39.tar.gz cpython-0347a9a49193f292b1aff0bbda2b33d96c459a39.tar.bz2 |
Get DBL_MAX from float.h not values.h. Will backport.
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 |