diff options
Diffstat (limited to 'ext/bz2/php_bz2.h')
-rw-r--r-- | ext/bz2/php_bz2.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/bz2/php_bz2.h b/ext/bz2/php_bz2.h index 62646bf503..ace76e0714 100644 --- a/ext/bz2/php_bz2.h +++ b/ext/bz2/php_bz2.h @@ -29,16 +29,16 @@ extern zend_module_entry bz2_module_entry; /* Bzip2 includes */ #include <bzlib.h> -PHP_MINIT_FUNCTION(bz2); -PHP_MSHUTDOWN_FUNCTION(bz2); -PHP_MINFO_FUNCTION(bz2); -PHP_FUNCTION(bzopen); -PHP_FUNCTION(bzread); -PHP_FUNCTION(bzerrno); -PHP_FUNCTION(bzerrstr); -PHP_FUNCTION(bzerror); -PHP_FUNCTION(bzcompress); -PHP_FUNCTION(bzdecompress); +static PHP_MINIT_FUNCTION(bz2); +static PHP_MSHUTDOWN_FUNCTION(bz2); +static PHP_MINFO_FUNCTION(bz2); +static PHP_FUNCTION(bzopen); +static PHP_FUNCTION(bzread); +static PHP_FUNCTION(bzerrno); +static PHP_FUNCTION(bzerrstr); +static PHP_FUNCTION(bzerror); +static PHP_FUNCTION(bzcompress); +static PHP_FUNCTION(bzdecompress); #else #define phpext_bz2_ptr NULL |