summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--UPGRADING.INTERNALS10
1 files changed, 10 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS
index f0eed8c0d4..d446dcea3b 100644
--- a/UPGRADING.INTERNALS
+++ b/UPGRADING.INTERNALS
@@ -11,6 +11,7 @@ UPGRADE NOTES - PHP X.Y
f. zend_parse_parameters() specs
g. sprintf() formats
h. HashTable API
+ i. New portable macros for large file support
2. Build system changes
a. Unix build system changes
@@ -79,6 +80,15 @@ UPGRADE NOTES - PHP X.Y
Datatype for array indexes was changed to php_uint_t, for string keys to zend_string *.
+ i. New portable macros for large file support
+
+ Function Alias Comment
+ stat, _stat64 zend_stat for use with zend_stat_t
+ fstat, _fstat64 zend_fstat for use with zend_stat_t
+ lseek, _lseeki64 zend_lseek for use with zend_off_t
+ ftell, _ftelli64 zend_ftell for use with zend_off_t
+ fseek, _fseeki64 zend_fseek for use with zend_off_t
+
========================
2. Build system changes
========================