diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2005-02-08 05:38:13 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2005-02-08 05:38:13 +0000 |
commit | ae9dcb17993f87e38193145ee9df2e9e15e5acbb (patch) | |
tree | c285548f85951a65f0f3c4abe7e0d201bedd4991 /ext/xml/xml.c | |
parent | 82a60c65381a157a7b05a3a5843a15c42f667dc4 (diff) | |
download | php-git-ae9dcb17993f87e38193145ee9df2e9e15e5acbb.tar.gz |
MFH eliminating a few more useless R* calls
Diffstat (limited to 'ext/xml/xml.c')
-rw-r--r-- | ext/xml/xml.c | 28 |
1 files changed, 3 insertions, 25 deletions
diff --git a/ext/xml/xml.c b/ext/xml/xml.c index fba42e2e71..e2b8bb040e 100644 --- a/ext/xml/xml.c +++ b/ext/xml/xml.c @@ -74,9 +74,6 @@ ZEND_GET_MODULE(xml) /* {{{ function prototypes */ PHP_MINIT_FUNCTION(xml); -PHP_RINIT_FUNCTION(xml); -PHP_MSHUTDOWN_FUNCTION(xml); -PHP_RSHUTDOWN_FUNCTION(xml); PHP_MINFO_FUNCTION(xml); static void xml_parser_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC); @@ -147,9 +144,9 @@ zend_module_entry xml_module_entry = { "xml", /* extension name */ xml_functions, /* extension function list */ PHP_MINIT(xml), /* extension-wide startup function */ - PHP_MSHUTDOWN(xml), /* extension-wide shutdown function */ - PHP_RINIT(xml), /* per-request startup function */ - PHP_RSHUTDOWN(xml), /* per-request shutdown function */ + NULL, /* extension-wide shutdown function */ + NULL, /* per-request startup function */ + NULL, /* per-request shutdown function */ PHP_MINFO(xml), /* information function */ NO_VERSION_YET, STANDARD_MODULE_PROPERTIES @@ -251,25 +248,6 @@ PHP_MINIT_FUNCTION(xml) return SUCCESS; } - -PHP_RINIT_FUNCTION(xml) -{ - return SUCCESS; -} - - -PHP_MSHUTDOWN_FUNCTION(xml) -{ - return SUCCESS; -} - - -PHP_RSHUTDOWN_FUNCTION(xml) -{ - return SUCCESS; -} - - PHP_MINFO_FUNCTION(xml) { php_info_print_table_start(); |