summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-10-27 06:43:00 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-10-27 06:43:00 (GMT)
commit2ec1df27855435f42a2181aef9d25b73e72a9e2b (patch)
tree30ccd5ad787e26ad0361fadb0b984797b0a33024 /Modules
parent62e58040c1c5fce264eb8d6c31cd6c05f4c6e265 (diff)
downloadcpython-2ec1df27855435f42a2181aef9d25b73e72a9e2b.zip
cpython-2ec1df27855435f42a2181aef9d25b73e72a9e2b.tar.gz
cpython-2ec1df27855435f42a2181aef9d25b73e72a9e2b.tar.bz2
Check for values.h.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_testcapimodule.c2
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