1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

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
+1 -1
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)
/***************************************************************************/