summaryrefslogtreecommitdiff
path: root/ext/standard/syslog.c
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>1999-07-25 15:06:50 +0000
committerSVN Migration <svn@php.net>1999-07-25 15:06:50 +0000
commit5bfa70242fb1f579e33cd02d0a4088387176ba7c (patch)
tree71c86814c79b7885ea40beb22e7d63097394a770 /ext/standard/syslog.c
parentb1617d8ac3bad1ace92085194e24cff8cbdbaf31 (diff)
downloadphp-git-BEFORE_NEW_OPERATOR_FIX.tar.gz
This commit was manufactured by cvs2svn to create tagBEFORE_NEW_OPERATOR_FIX
'BEFORE_NEW_OPERATOR_FIX'.
Diffstat (limited to 'ext/standard/syslog.c')
-rw-r--r--ext/standard/syslog.c8
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}
};