From 61af9b82347d7b51261821ec1f29fc1bd6ae73b0 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 3 May 2005 14:20:55 +0000 Subject: [PATCH 1/1] - not static declared static --- http_message_object.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/http_message_object.c b/http_message_object.c index 2b8de8b..f1a6705 100644 --- a/http_message_object.c +++ b/http_message_object.c @@ -26,6 +26,8 @@ #include "php_http_std_defs.h" #include "php_http_message_object.h" +#include "phpstr/phpstr.h" + #ifdef ZEND_ENGINE_2 #define http_message_object_declare_default_properties() _http_message_object_declare_default_properties(TSRMLS_C) @@ -124,7 +126,7 @@ static inline void _http_message_object_declare_default_properties(TSRMLS_D) DCL_PROP_N(PROTECTED, parentMessage); } -static void _http_message_object_free(zend_object *object TSRMLS_DC) +void _http_message_object_free(zend_object *object TSRMLS_DC) { http_message_object *o = (http_message_object *) object; -- 2.30.2