Guard uintptr_t test with HAVE_STDINT_H, test for

stdint.h.
This commit is contained in:
Martin v. Löwis 2006-10-02 15:24:01 +00:00
parent da70fd1599
commit 33bb6102ec
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.