Replace the various get_module() functions with a uniform

ZEND_GET_MODULE(name) macro.
This commit is contained in:
Sascha Schumann 2000-05-02 00:30:36 +00:00
parent 95310ad5e0
commit 0d383d9373
38 changed files with 39 additions and 39 deletions

View file

@ -493,7 +493,7 @@ zend_module_entry java_module_entry = {
STANDARD_MODULE_PROPERTIES
};
DLEXPORT zend_module_entry *get_module(void) { return &java_module_entry; }
ZEND_GET_MODULE(java)
/***************************************************************************/