diff options
author | Stig Bakken <ssb@php.net> | 2000-03-06 20:37:11 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2000-03-06 20:37:11 +0000 |
commit | 99e0b36321236c1bcf9d60c1e3ed07050b55a20f (patch) | |
tree | 624ad6ac28695d278db7a783626e44177a7d3924 /main/php.h | |
parent | 031808cd1b0f584b9c37af5fc7edecf63977da10 (diff) | |
download | php-git-99e0b36321236c1bcf9d60c1e3ed07050b55a20f.tar.gz |
@Cleaned up extension namespace (Stig)
Cleaned up extension namespace, and changed ext/standard into one single
extension.
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/php.h b/main/php.h index b9668c0c41..a667f6978a 100644 --- a/main/php.h +++ b/main/php.h @@ -233,8 +233,8 @@ extern int ap_vsnprintf(char *, size_t, const char *, va_list); #define PHP_RINIT_FUNCTION(module) int PHP_RINIT(module)(INIT_FUNC_ARGS) #define PHP_RSHUTDOWN_FUNCTION(module) int PHP_RSHUTDOWN(module)(SHUTDOWN_FUNC_ARGS) #define PHP_MINFO_FUNCTION(module) void PHP_MINFO(module)(ZEND_MODULE_INFO_FUNC_ARGS) -#define PHP_GINIT_FUNCTION(module) static int PHP_GINIT(module)(void) -#define PHP_GSHUTDOWN_FUNCTION(module) static int PHP_GSHUTDOWN(module)(void) +#define PHP_GINIT_FUNCTION(module) int PHP_GINIT(module)(GINIT_FUNC_ARGS) +#define PHP_GSHUTDOWN_FUNCTION(module) int PHP_GSHUTDOWN(module)(void) /* global variables */ |