File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -744,14 +744,14 @@ static int module_startup = 1;
744744static int module_shutdown = 0 ;
745745
746746/* {{{ php_during_module_startup */
747- static int php_during_module_startup (void )
747+ PHPAPI int php_during_module_startup (void )
748748{
749749 return module_startup ;
750750}
751751/* }}} */
752752
753753/* {{{ php_during_module_shutdown */
754- static int php_during_module_shutdown (void )
754+ PHPAPI int php_during_module_shutdown (void )
755755{
756756 return module_shutdown ;
757757}
Original file line number Diff line number Diff line change @@ -311,6 +311,8 @@ void phperror(char *error);
311311PHPAPI size_t php_write (void * buf , size_t size );
312312PHPAPI size_t php_printf (const char * format , ...) PHP_ATTRIBUTE_FORMAT (printf , 1 , 2 );
313313PHPAPI size_t php_printf_unchecked (const char * format , ...);
314+ PHPAPI int php_during_module_startup (void );
315+ PHPAPI int php_during_module_shutdown (void );
314316PHPAPI int php_get_module_initialized (void );
315317#ifdef HAVE_SYSLOG_H
316318#include "php_syslog.h"
You can’t perform that action at this time.
0 commit comments