From 99e0b36321236c1bcf9d60c1e3ed07050b55a20f Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Mon, 6 Mar 2000 20:37:11 +0000 Subject: @Cleaned up extension namespace (Stig) Cleaned up extension namespace, and changed ext/standard into one single extension. --- main/php.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/php.h') 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 */ -- cgit v1.2.1