summaryrefslogtreecommitdiff
path: root/ext/mhash/mhash.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>1999-08-02 16:06:13 +0000
committerAndrey Hristov <andrey@php.net>1999-08-02 16:06:13 +0000
commit33d27f5bfe75f12430908b7ec4af52bafe552083 (patch)
tree36897dcbfa52a852b44b96e9f4662a1d2e8c72c5 /ext/mhash/mhash.c
parent05585132caf918d00a2749ab3c77c256a03c2807 (diff)
downloadphp-git-33d27f5bfe75f12430908b7ec4af52bafe552083.tar.gz
More symbol work.
Diffstat (limited to 'ext/mhash/mhash.c')
-rw-r--r--ext/mhash/mhash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mhash/mhash.c b/ext/mhash/mhash.c
index 9f1939e1a2..ac2a0a7c4f 100644
--- a/ext/mhash/mhash.c
+++ b/ext/mhash/mhash.c
@@ -32,12 +32,12 @@ function_entry mhash_functions[] = {
{0},
};
-static int php_minit_mhash(INIT_FUNC_ARGS);
+static PHP_MINIT_FUNCTION(mhash);
zend_module_entry mhash_module_entry = {
"mhash",
mhash_functions,
- php_minit_mhash, NULL,
+ PHP_MINIT(mhash), NULL,
NULL, NULL,
NULL,
STANDARD_MODULE_PROPERTIES,
@@ -45,7 +45,7 @@ zend_module_entry mhash_module_entry = {
#define MHASH_FAILED_MSG "mhash initialization failed"
-static int php_minit_mhash(INIT_FUNC_ARGS)
+static PHP_MINIT_FUNCTION(mhash)
{
int i;
char *name;