diff options
author | Fredrik Lundh <fredrik@pythonware.com> | 2000-08-07 20:16:28 (GMT) |
---|---|---|
committer | Fredrik Lundh <fredrik@pythonware.com> | 2000-08-07 20:16:28 (GMT) |
commit | 6947d0b65eb21606de8e17b180bf116421d23116 (patch) | |
tree | 00edf27eb1777cdbd947a333192db8344f36aa9d /PC | |
parent | 6c2f0c73a13e1d106042661ddf5c6ab1d56bdd01 (diff) | |
download | cpython-6947d0b65eb21606de8e17b180bf116421d23116.zip cpython-6947d0b65eb21606de8e17b180bf116421d23116.tar.gz cpython-6947d0b65eb21606de8e17b180bf116421d23116.tar.bz2 |
-- from Trent Mick: [Patch #101010] replace use of INT_PTR
with uintptr_t (fix MSVC 5.0 build)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/config.h b/PC/config.h index 9b68373..f1b0de7 100644 --- a/PC/config.h +++ b/PC/config.h @@ -241,13 +241,13 @@ typedef int pid_t; /* End of compilers - finish up */ -/* define the ANSI intptr_t type for portable use of a pointer sized - integer */ +/* define some ANSI types that are not defined in earlier Win headers */ #if _MSC_VER >= 1200 /* This file only exists in VC 6.0 or higher */ #include <basetsd.h> #endif #if defined(MS_WINDOWS) && !defined(MS_WIN64) typedef long intptr_t; +typedef unsigned long uintptr_t; #endif #if defined(MS_WIN64) |