Use intptr_t/uintptr_t on Windows

This commit is contained in:
Martin v. Löwis 2004-07-27 15:57:24 +00:00
parent b600fe90a7
commit fe393f47c6
2 changed files with 13 additions and 0 deletions

View file

@ -41,6 +41,11 @@
#include <unistd.h>
#endif
/* For uintptr_t, intptr_t */
#ifdef HAVE_STDDEF_H
#include <stddef.h>
#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.