diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-07-27 15:57:24 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-07-27 15:57:24 +0000 |
commit | fe393f47c662c307d2d3e90f785edf5821d54a8d (patch) | |
tree | 4029f95155ab2c344a7252379eb948fa18753b04 /PC/pyconfig.h | |
parent | Switch arguments to memset (kudos to MSVC C4318 for finding that) (diff) | |
download | cpython-fe393f47c662c307d2d3e90f785edf5821d54a8d.tar.gz cpython-fe393f47c662c307d2d3e90f785edf5821d54a8d.tar.bz2 cpython-fe393f47c662c307d2d3e90f785edf5821d54a8d.zip |
Use intptr_t/uintptr_t on Windows
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r-- | PC/pyconfig.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 557342f876e..2109d22959a 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -267,6 +267,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ #define SIZEOF_LONG 4 #define SIZEOF_LONG_LONG 8 +/* Atleast VC 7.1 has them. If some compiler does not provide them, + #ifdef appropriately .*/ +#define HAVE_UINTPTR_T 1 +#define HAVE_INTPTR_T 1 + #endif /* Fairly standard from here! */ @@ -484,6 +489,9 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ /* Define if you have the <stdarg.h> prototypes. */ #define HAVE_STDARG_PROTOTYPES +/* Define if you have the <stddef.h> header file. */ +#define HAVE_STDDEF_H 1 + /* Define if you have the <sys/audioio.h> header file. */ /* #undef HAVE_SYS_AUDIOIO_H */ |