summaryrefslogtreecommitdiff
path: root/Zend/zend_long.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_long.h')
-rw-r--r--Zend/zend_long.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_long.h b/Zend/zend_long.h
index 4c81105438..b2e0ee910d 100644
--- a/Zend/zend_long.h
+++ b/Zend/zend_long.h
@@ -61,7 +61,7 @@ typedef int32_t zend_off_t;
# define ZEND_ULONG_FMT "%" PRIu64
# define ZEND_LONG_FMT_SPEC PRId64
# define ZEND_ULONG_FMT_SPEC PRIu64
-# ifdef PHP_WIN32
+# ifdef ZEND_WIN32
# define ZEND_LTOA(i, s, len) _i64toa_s((i), (s), (len), 10)
# define ZEND_ATOL(i, s) i = _atoi64((s))
# define ZEND_STRTOL(s0, s1, base) _strtoi64((s0), (s1), (base))
@@ -89,7 +89,7 @@ typedef int32_t zend_off_t;
# define ZEND_ULONG_FMT "%" PRIu32
# define ZEND_LONG_FMT_SPEC PRId32
# define ZEND_ULONG_FMT_SPEC PRIu32
-# ifdef PHP_WIN32
+# ifdef ZEND_WIN32
# define ZEND_LTOA(i, s, len) _ltoa_s((i), (s), (len), 10)
# define ZEND_ATOL(i, s) i = atol((s))
# else