diff options
author | Anatol Belski <ab@php.net> | 2014-10-29 20:04:56 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-10-29 20:04:56 +0100 |
commit | d77ce317636919a87daa7f8ffb2979474f9cade7 (patch) | |
tree | c9ebe2c7ad01661e7696a8f15d6d4842870f03ea /ext/standard/basic_functions.c | |
parent | 23f089a6b3586d524e8709d75262029bc8fa7ad4 (diff) | |
parent | fc904569ea5c5513925a69bf43820845eb3db104 (diff) | |
download | php-git-d77ce317636919a87daa7f8ffb2979474f9cade7.tar.gz |
Merge branch 'PHP-5.6'
* PHP-5.6:
fix output globals importing
export output globals
use portable strndup implementation
unix sockets aren't available on windows
dll export APIs needed by phpdbg
fix sapi/phpdbg/config.w32
Don't treat warnings as failures in the junit output
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r-- | ext/standard/basic_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 106bc54141..a168069cfb 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -4962,7 +4962,7 @@ static int user_tick_function_compare(user_tick_function_entry * tick_fe1, user_ } /* }}} */ -void php_call_shutdown_functions(TSRMLS_D) /* {{{ */ +PHPAPI void php_call_shutdown_functions(TSRMLS_D) /* {{{ */ { if (BG(user_shutdown_function_names)) { zend_try { @@ -4974,7 +4974,7 @@ void php_call_shutdown_functions(TSRMLS_D) /* {{{ */ } /* }}} */ -void php_free_shutdown_functions(TSRMLS_D) /* {{{ */ +PHPAPI void php_free_shutdown_functions(TSRMLS_D) /* {{{ */ { if (BG(user_shutdown_function_names)) zend_try { |