diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 06:43:00 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 06:43:00 (GMT) |
commit | 2ec1df27855435f42a2181aef9d25b73e72a9e2b (patch) | |
tree | 30ccd5ad787e26ad0361fadb0b984797b0a33024 /Modules | |
parent | 62e58040c1c5fce264eb8d6c31cd6c05f4c6e265 (diff) | |
download | cpython-2ec1df27855435f42a2181aef9d25b73e72a9e2b.zip cpython-2ec1df27855435f42a2181aef9d25b73e72a9e2b.tar.gz cpython-2ec1df27855435f42a2181aef9d25b73e72a9e2b.tar.bz2 |
Check for values.h.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_testcapimodule.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 0236c83..c5068ef 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -6,7 +6,9 @@ */ #include "Python.h" +#ifdef HAVE_VALUES_H #include <values.h> +#endif #include "structmember.h" #ifdef WITH_THREAD |