Guard uintptr_t test with HAVE_STDINT_H, test for

stdint.h. Will backport.
This commit is contained in:
Martin v. Löwis 2006-10-02 15:20:37 +00:00
parent ebe26709d2
commit 40e9aed050
3 changed files with 16 additions and 7 deletions

View file

@ -3,6 +3,10 @@
#include "pyconfig.h" /* include for defines */
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
/**************************************************************************
Symbols and macros to supply platform-independent interfaces to basic
C language & library operations whose spellings vary across platforms.