diff options
| author | Stig Bakken <ssb@php.net> | 2000-03-06 20:37:11 +0000 |
|---|---|---|
| committer | Stig Bakken <ssb@php.net> | 2000-03-06 20:37:11 +0000 |
| commit | 99e0b36321236c1bcf9d60c1e3ed07050b55a20f (patch) | |
| tree | 624ad6ac28695d278db7a783626e44177a7d3924 /ext/standard/syslog.c | |
| parent | 031808cd1b0f584b9c37af5fc7edecf63977da10 (diff) | |
| download | php-git-99e0b36321236c1bcf9d60c1e3ed07050b55a20f.tar.gz | |
@Cleaned up extension namespace (Stig)
Cleaned up extension namespace, and changed ext/standard into one single
extension.
Diffstat (limited to 'ext/standard/syslog.c')
| -rw-r--r-- | ext/standard/syslog.c | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c index f6a579dc42..8c2a94cc25 100644 --- a/ext/standard/syslog.c +++ b/ext/standard/syslog.c @@ -12,7 +12,7 @@ | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ - | Authors: Stig Sæther Bakken <ssb@guardian.no> | + | Authors: Stig Sæther Bakken <ssb@fast.no> | +----------------------------------------------------------------------+ */ @@ -253,26 +253,6 @@ PHP_FUNCTION(syslog) } /* }}} */ - -function_entry syslog_functions[] = { - PHP_FE(openlog, NULL) - PHP_FE(syslog, NULL) - PHP_FE(closelog, NULL) - PHP_FE(define_syslog_variables, NULL) - {NULL, NULL, NULL} -}; - - -zend_module_entry syslog_module_entry = { - "Syslog", syslog_functions, PHP_MINIT(syslog), NULL, PHP_RINIT(syslog), PHP_RSHUTDOWN(syslog), NULL, STANDARD_MODULE_PROPERTIES -}; - - -#if COMPILE_DL -DLEXPORT zend_module_entry *get_module(void) { return &syslog_module_entry; } -#endif - - /* * Local variables: * tab-width: 4 |
