diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2006-10-02 15:24:01 (GMT) |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2006-10-02 15:24:01 (GMT) |
| commit | 33bb6102ec7f4734b10c54b13eb14dd4352d7bae (patch) | |
| tree | fcf3bfd779e766b431c5e50a924ea976a8d98474 /Include/pyport.h | |
| parent | da70fd15992ec2833f02ac4e5a31d4675f3ee5f8 (diff) | |
| download | cpython-33bb6102ec7f4734b10c54b13eb14dd4352d7bae.zip cpython-33bb6102ec7f4734b10c54b13eb14dd4352d7bae.tar.gz cpython-33bb6102ec7f4734b10c54b13eb14dd4352d7bae.tar.bz2 | |
Guard uintptr_t test with HAVE_STDINT_H, test for
stdint.h.
Diffstat (limited to 'Include/pyport.h')
| -rw-r--r-- | Include/pyport.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index 8f8e514..6fe3f0b 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -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. |
