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/mbstring | |
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/mbstring')
-rw-r--r-- | ext/mbstring/mbstring.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/mbstring/mbstring.h b/ext/mbstring/mbstring.h index 1c72b2d255..fe6178daa0 100644 --- a/ext/mbstring/mbstring.h +++ b/ext/mbstring/mbstring.h @@ -58,10 +58,10 @@ extern zend_module_entry mbstring_module_entry; #define mbstring_module_ptr &mbstring_module_entry -extern PHP_MINIT_FUNCTION(mbstring); -extern PHP_MSHUTDOWN_FUNCTION(mbstring); -extern PHP_RINIT_FUNCTION(mbstring); -extern PHP_RSHUTDOWN_FUNCTION(mbstring); +PHP_MINIT_FUNCTION(mbstring); +PHP_MSHUTDOWN_FUNCTION(mbstring); +PHP_RINIT_FUNCTION(mbstring); +PHP_RSHUTDOWN_FUNCTION(mbstring); PHP_MINFO_FUNCTION(mbstring); /* php function registration */ |