commit | ca4706399879b30e952c402637b4fc0d4d2e661c | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue Sep 06 13:47:26 2016 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Tue Sep 06 13:47:26 2016 -0700 |
tree | 72f97b545d4d31afd06a8874fcbb578cb178aa0d | |
parent | 3c397e4c39430000348f2f64d9e394bf1b61c509 [diff] [blame] |
replace Py_(u)intptr_t with the c99 standard types
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index 3f95133..c201da1 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c
@@ -18,7 +18,7 @@ #define uint unsigned int /* assuming >= 16 bits */ #undef uptr -#define uptr Py_uintptr_t +#define uptr uintptr_t /* Forward declaration */ static void* _PyMem_DebugRawMalloc(void *ctx, size_t size);