From fe393f47c662c307d2d3e90f785edf5821d54a8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Tue, 27 Jul 2004 15:57:24 +0000 Subject: Use intptr_t/uintptr_t on Windows --- Include/Python.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Include/Python.h') diff --git a/Include/Python.h b/Include/Python.h index a2be68f78a..2d48d2eaa1 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -41,6 +41,11 @@ #include #endif +/* For uintptr_t, intptr_t */ +#ifdef HAVE_STDDEF_H +#include +#endif + /* CAUTION: Build setups should ensure that NDEBUG is defined on the * compiler command line when building Python in release mode; else * assert() calls won't be removed. -- cgit v1.2.1