diff options
author | Harald Radi <phanto@php.net> | 2003-01-17 23:59:15 +0000 |
---|---|---|
committer | Harald Radi <phanto@php.net> | 2003-01-17 23:59:15 +0000 |
commit | 46306a3212fc676e0d6838d4bcaa5ac10fb093ee (patch) | |
tree | 0b3481d99d436f9efa3d683d8339aa9656db0e28 /Zend/zend_objects.c | |
parent | 054826b19255d72c374f506e50df253c550ed7c5 (diff) | |
download | php-git-46306a3212fc676e0d6838d4bcaa5ac10fb093ee.tar.gz |
export zend_objects_destroy_object()
static inline was meaningless anyways as the function
was only used as a callback handler and was never
called directly
Diffstat (limited to 'Zend/zend_objects.c')
-rw-r--r-- | Zend/zend_objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_objects.c b/Zend/zend_objects.c index ec9f11d27b..acef147b94 100644 --- a/Zend/zend_objects.c +++ b/Zend/zend_objects.c @@ -38,7 +38,7 @@ static inline void zend_objects_call_destructor(zend_object *object, zend_object } -static inline void zend_objects_destroy_object(zend_object *object, zend_object_handle handle TSRMLS_DC) +ZEND_API void zend_objects_destroy_object(zend_object *object, zend_object_handle handle TSRMLS_DC) { zend_objects_call_destructor(object, handle TSRMLS_CC); /* Nuke the object */ |