diff options
author | Anatol Belski <ab@php.net> | 2014-10-29 19:32:52 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-10-29 19:32:52 +0100 |
commit | fdbfcc0b51b5d78777625d5be93a282e23cc0540 (patch) | |
tree | 1c2963e5b433d9b9fee10deb2ff512b529c402f5 /ext/standard/basic_functions.c | |
parent | 79a4339f1b23c8cb534679667f7ce781f21c5bb3 (diff) | |
download | php-git-fdbfcc0b51b5d78777625d5be93a282e23cc0540.tar.gz |
dll export APIs needed by phpdbg
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 ca14b28ccd..c5392760e8 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -5051,7 +5051,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 { @@ -5063,7 +5063,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 { |