diff options
author | Sascha Schumann <sas@php.net> | 2001-02-24 21:08:15 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-02-24 21:08:15 +0000 |
commit | a40ee1f181f98504e476dc85ab27210099a54680 (patch) | |
tree | 0fa0037fa9f01b5fe5c7a70bddd283225c29caf3 /ext/standard/php_ext_syslog.h | |
parent | adb3e3992ca89f3bed30f40b8ab6fa2c2a50cfc6 (diff) | |
download | php-git-a40ee1f181f98504e476dc85ab27210099a54680.tar.gz |
Actually compile on systems without syslog.
PR: #9412
Diffstat (limited to 'ext/standard/php_ext_syslog.h')
-rw-r--r-- | ext/standard/php_ext_syslog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/php_ext_syslog.h b/ext/standard/php_ext_syslog.h index aa597cf080..016c81163f 100644 --- a/ext/standard/php_ext_syslog.h +++ b/ext/standard/php_ext_syslog.h @@ -25,9 +25,9 @@ #include "php_syslog.h" -extern PHP_MINIT_FUNCTION(syslog); -extern PHP_RINIT_FUNCTION(syslog); -extern PHP_RSHUTDOWN_FUNCTION(syslog); +PHP_MINIT_FUNCTION(syslog); +PHP_RINIT_FUNCTION(syslog); +PHP_RSHUTDOWN_FUNCTION(syslog); PHP_FUNCTION(openlog); PHP_FUNCTION(syslog); |