diff options
author | Andrey Hristov <andrey@php.net> | 1999-07-24 22:16:54 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-07-24 22:16:54 +0000 |
commit | 736f4831a5c2aa0412bbcd5016c8be374c0b0161 (patch) | |
tree | 938cc9a6bc2b036f060e5fadad49482cdee904fc /ext/standard/syslog.c | |
parent | f6f0f285cc204df8bc99a2fa0769122396dcee22 (diff) | |
download | php-git-736f4831a5c2aa0412bbcd5016c8be374c0b0161.tar.gz |
A bunch of grunt work updating function entries and declarations.
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} }; |