diff options
Diffstat (limited to 'ext/standard/php3_syslog.h')
-rw-r--r-- | ext/standard/php3_syslog.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/standard/php3_syslog.h b/ext/standard/php3_syslog.h index 2353d53bc2..69dd4abb80 100644 --- a/ext/standard/php3_syslog.h +++ b/ext/standard/php3_syslog.h @@ -35,9 +35,10 @@ extern php3_module_entry syslog_module_entry; #define syslog_module_ptr &syslog_module_entry -extern int php3_minit_syslog(INIT_FUNC_ARGS); -extern int php3_rinit_syslog(INIT_FUNC_ARGS); -extern int php3_rshutdown_syslog(SHUTDOWN_FUNC_ARGS); +extern PHP_MINIT_FUNCTION(syslog); +extern PHP_RINIT_FUNCTION(syslog); +extern PHP_RSHUTDOWN_FUNCTION(syslog); + PHP_FUNCTION(openlog); PHP_FUNCTION(syslog); PHP_FUNCTION(closelog); |