summaryrefslogtreecommitdiff
path: root/win32/php_stdint.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-28 13:07:47 +0200
committerAnatol Belski <ab@php.net>2014-08-28 13:07:47 +0200
commit1c252d5dd4c0499ae58b2a7bdef0118c93c587ec (patch)
treee2ab3d5633cebd6f940a0d56b6cb394a515d9c0b /win32/php_stdint.h
parent8e4e765f7e1639ea464bd916727b1227ce59ed1a (diff)
downloadphp-git-1c252d5dd4c0499ae58b2a7bdef0118c93c587ec.tar.gz
use stddef.h definitions for uintptr_t and intptr_t
Diffstat (limited to 'win32/php_stdint.h')
-rw-r--r--win32/php_stdint.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/win32/php_stdint.h b/win32/php_stdint.h
index 858dcb5c33..71aec2a358 100644
--- a/win32/php_stdint.h
+++ b/win32/php_stdint.h
@@ -116,13 +116,8 @@ typedef uint32_t u_int32_t;
typedef uint64_t uint_fast64_t;
// 7.18.1.4 Integer types capable of holding object pointers
-#ifdef _WIN64 // [
- typedef __int64 intptr_t;
- typedef unsigned __int64 uintptr_t;
-#else // _WIN64 ][
- typedef _W64 int intptr_t;
- typedef _W64 unsigned int uintptr_t;
-#endif // _WIN64 ]
+/* intptr_t and uintptr_t are available from stddef.h */
+#include <stddef.h>
// 7.18.1.5 Greatest-width integer types
typedef int64_t intmax_t;