From 727398b2d4cf7892e78a286ca99a228eb0e32bbb Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Tue, 13 Jun 2000 19:01:22 +0000 Subject: [PATCH] Add to the API --- Zend/zend_compile.c | 2 +- Zend/zend_compile.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 65a183efdc..edde8746e9 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -1023,7 +1023,7 @@ void do_return(znode *expr, int do_end_vparse CLS_DC) } -void function_add_ref(zend_function *function) +ZEND_API void function_add_ref(zend_function *function) { if (function->type == ZEND_USER_FUNCTION) { zend_op_array *op_array = &function->op_array; diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index b89ae9daa9..4bb716cc8b 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -365,7 +365,7 @@ void do_extended_fcall_end(CLS_D); void do_ticks(CLS_D); -void function_add_ref(zend_function *function); +ZEND_API void function_add_ref(zend_function *function); #define INITIAL_OP_ARRAY_SIZE 64 -- 2.50.1