mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
Removed pointless operations/declarations.
This commit is contained in:
@@ -31,9 +31,6 @@ extern zend_module_entry shmop_module_entry;
|
||||
#endif
|
||||
|
||||
PHP_MINIT_FUNCTION(shmop);
|
||||
PHP_MSHUTDOWN_FUNCTION(shmop);
|
||||
PHP_RINIT_FUNCTION(shmop);
|
||||
PHP_RSHUTDOWN_FUNCTION(shmop);
|
||||
PHP_MINFO_FUNCTION(shmop);
|
||||
|
||||
PHP_FUNCTION(shmop_open);
|
||||
|
||||
@@ -65,7 +65,7 @@ zend_module_entry shmop_module_entry = {
|
||||
"shmop",
|
||||
shmop_functions,
|
||||
PHP_MINIT(shmop),
|
||||
PHP_MSHUTDOWN(shmop),
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
PHP_MINFO(shmop),
|
||||
@@ -99,14 +99,6 @@ PHP_MINIT_FUNCTION(shmop)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ PHP_MSHUTDOWN_FUNCTION
|
||||
*/
|
||||
PHP_MSHUTDOWN_FUNCTION(shmop)
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ PHP_MINFO_FUNCTION
|
||||
*/
|
||||
PHP_MINFO_FUNCTION(shmop)
|
||||
|
||||
Reference in New Issue
Block a user