diff options
author | Andrey Hristov <andrey@php.net> | 1999-08-02 15:02:52 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-08-02 15:02:52 +0000 |
commit | 05585132caf918d00a2749ab3c77c256a03c2807 (patch) | |
tree | e9c8561d2b198773facc3ae86c3359d175c1ebae /ext/mcrypt/mcrypt.c | |
parent | 98037c425d981f5e08bd308fd9965e5a7e72b98c (diff) | |
download | php-git-05585132caf918d00a2749ab3c77c256a03c2807.tar.gz |
More symbol work.
Diffstat (limited to 'ext/mcrypt/mcrypt.c')
-rw-r--r-- | ext/mcrypt/mcrypt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mcrypt/mcrypt.c b/ext/mcrypt/mcrypt.c index 5d200e8d1d..574e254fcd 100644 --- a/ext/mcrypt/mcrypt.c +++ b/ext/mcrypt/mcrypt.c @@ -39,12 +39,12 @@ function_entry mcrypt_functions[] = { {0}, }; -static int php_minit_mcrypt(INIT_FUNC_ARGS); +static PHP_MINIT_FUNCTION(mcrypt); zend_module_entry mcrypt_module_entry = { "mcrypt", mcrypt_functions, - php_minit_mcrypt, NULL, + PHP_MINIT(mcrypt), NULL, NULL, NULL, NULL, STANDARD_MODULE_PROPERTIES, @@ -110,7 +110,7 @@ static mcrypt_global_struct mcryptg; #define MCRYPT_ENTRY(a) REGISTER_LONG_CONSTANT("MCRYPT_" #a, a, CONST_PERSISTENT) -static int php_minit_mcrypt(INIT_FUNC_ARGS) +static PHP_MINIT_FUNCTION(mcrypt) { /* modes for mcrypt_??? routines */ REGISTER_LONG_CONSTANT("MCRYPT_ENCRYPT", 0, CONST_PERSISTENT); |