summaryrefslogtreecommitdiff
path: root/Zend/zend_long.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-02-02 09:17:52 +0100
committerAnatol Belski <ab@php.net>2015-02-02 09:39:33 +0100
commit79c9dc75de490430a81ecb9134c2c79b3d8fc0a1 (patch)
tree1e402d40efe22f4601c15d500d0a3392dfaeeaec /Zend/zend_long.h
parentf248df900300c5b2201d4cf634d58d413399e2eb (diff)
downloadphp-git-79c9dc75de490430a81ecb9134c2c79b3d8fc0a1.tar.gz
rely on macros from stdint for int constants on 64 bit
32 bit ones are already in use
Diffstat (limited to 'Zend/zend_long.h')
-rw-r--r--Zend/zend_long.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/Zend/zend_long.h b/Zend/zend_long.h
index 2644faa8bd..1acd2cfb08 100644
--- a/Zend/zend_long.h
+++ b/Zend/zend_long.h
@@ -37,13 +37,8 @@ typedef int64_t zend_off_t;
# define ZEND_LONG_MAX INT64_MAX
# define ZEND_LONG_MIN INT64_MIN
# define ZEND_ULONG_MAX UINT64_MAX
-# ifdef _WIN64
-# define Z_L(i) i##i64
-# define Z_UL(i) i##Ui64
-# else
-# define Z_L(i) i##LL
-# define Z_UL(i) i##ULL
-# endif
+# define Z_L(i) INT64_C(i)
+# define Z_UL(i) UINT64_C(i)
# define SIZEOF_ZEND_LONG 8
#else
typedef int32_t zend_long;