summaryrefslogtreecommitdiff
path: root/ext/standard/php_array.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2014-02-10 17:49:21 +0400
committerDmitry Stogov <dmitry@zend.com>2014-02-10 17:49:21 +0400
commit2161103fc34946a1dcb10ddd50b9db197f89c049 (patch)
tree98c04bbc761bea06a81645b7abf65e1e604364c4 /ext/standard/php_array.h
parent00244baba8f4e90861075ac9b73adea46bb21aaf (diff)
downloadphp-git-2161103fc34946a1dcb10ddd50b9db197f89c049.tar.gz
Use better data structures (incomplete)
Diffstat (limited to 'ext/standard/php_array.h')
-rw-r--r--ext/standard/php_array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_array.h b/ext/standard/php_array.h
index c4389dd92a..0a869e899b 100644
--- a/ext/standard/php_array.h
+++ b/ext/standard/php_array.h
@@ -103,7 +103,7 @@ PHP_FUNCTION(array_key_exists);
PHP_FUNCTION(array_chunk);
PHP_FUNCTION(array_combine);
-PHPAPI HashTable* php_splice(HashTable *, int, int, zval ***, int, HashTable **);
+PHPAPI HashTable* php_splice(HashTable *, int, int, zval *, int, HashTable *);
PHPAPI int php_array_merge(HashTable *dest, HashTable *src, int recursive TSRMLS_DC);
PHPAPI int php_array_replace_recursive(HashTable *dest, HashTable *src TSRMLS_DC);
PHPAPI int php_multisort_compare(const void *a, const void *b TSRMLS_DC);