diff options
Diffstat (limited to 'ext/standard/syslog.c')
-rw-r--r-- | ext/standard/syslog.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c index 88a8719fd0..0e8f0e9c0d 100644 --- a/ext/standard/syslog.c +++ b/ext/standard/syslog.c @@ -257,10 +257,10 @@ PHP_FUNCTION(syslog) function_entry syslog_functions[] = { - {"openlog", php3_openlog, NULL}, - {"syslog", php3_syslog, NULL}, - {"closelog", php3_closelog, NULL}, - {"define_syslog_variables", php3_define_syslog_variables, NULL}, + PHP_FE(openlog, NULL) + PHP_FE(syslog, NULL) + PHP_FE(closelog, NULL) + PHP_FE(define_syslog_variables, NULL) {NULL, NULL, NULL} }; |