summaryrefslogtreecommitdiff
path: root/Zend/zend_opcode.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>1999-04-14 19:53:33 +0000
committerAndi Gutmans <andi@php.net>1999-04-14 19:53:33 +0000
commit39f9487ee1ee4132e12eaafa0ed2a63e12612420 (patch)
treed84b46e0f75a29af0ac21443563ccf9b048e9a5c /Zend/zend_opcode.c
parent76ceb9ad44106df47b7d6faa81160926574509aa (diff)
downloadphp-git-39f9487ee1ee4132e12eaafa0ed2a63e12612420.tar.gz
-Tiny patches
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r--Zend/zend_opcode.c5
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: