diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-30 01:56:43 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-30 01:56:43 +0000 |
commit | 1c25b8dd532961ecb09932b182457ca0adcf8b57 (patch) | |
tree | 2996afec821096218156f1d914301ad589edf897 /ext/mcal/php_mcal.h | |
parent | b57703825be0ff40d34ee257ce14c453c4bffb98 (diff) | |
download | php-git-1c25b8dd532961ecb09932b182457ca0adcf8b57.tar.gz |
Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on the way
Diffstat (limited to 'ext/mcal/php_mcal.h')
-rw-r--r-- | ext/mcal/php_mcal.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mcal/php_mcal.h b/ext/mcal/php_mcal.h index 902c25dcc2..fb4d24af48 100644 --- a/ext/mcal/php_mcal.h +++ b/ext/mcal/php_mcal.h @@ -16,11 +16,11 @@ extern zend_module_entry php_mcal_module_entry; #define phpext_mcal_ptr php_mcal_module_ptr #ifdef ZEND_VERSION -extern PHP_MINIT_FUNCTION(mcal); +PHP_MINIT_FUNCTION(mcal); PHP_MINFO_FUNCTION(mcal); #else -extern int PHP_MINIT_FUNCTION(INIT_FUNC_ARGS); -extern void PHP_MINFO_FUNCTION(void); +int PHP_MINIT_FUNCTION(INIT_FUNC_ARGS); +void PHP_MINFO_FUNCTION(void); #endif |