diff options
author | Andi Gutmans <andi@php.net> | 1999-04-14 19:53:33 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-04-14 19:53:33 +0000 |
commit | 39f9487ee1ee4132e12eaafa0ed2a63e12612420 (patch) | |
tree | d84b46e0f75a29af0ac21443563ccf9b048e9a5c /Zend/zend_opcode.c | |
parent | 76ceb9ad44106df47b7d6faa81160926574509aa (diff) | |
download | php-git-39f9487ee1ee4132e12eaafa0ed2a63e12612420.tar.gz |
-Tiny patches
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r-- | Zend/zend_opcode.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 551f7366a0..a6d9e8aca0 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -96,7 +96,7 @@ void init_op_array(zend_op_array *op_array, int initial_ops_size) } -void destroy_zend_function(zend_function *function) +ZEND_API void destroy_zend_function(zend_function *function) { switch (function->type) { case ZEND_USER_FUNCTION: @@ -108,7 +108,8 @@ void destroy_zend_function(zend_function *function) } } -void destroy_zend_class(zend_class_entry *ce) + +ZEND_API void destroy_zend_class(zend_class_entry *ce) { switch (ce->type) { case ZEND_USER_CLASS: |