summaryrefslogtreecommitdiff
path: root/Zend/zend.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-07-04 00:50:57 +0300
committerDmitry Stogov <dmitry@zend.com>2018-07-04 00:50:57 +0300
commit7eb045d31a108323e3878947419cde94e2ba8645 (patch)
treec1225081083fb8231be428bfd1f80fff01da383e /Zend/zend.h
parente080fb6d92b7ed942613388be6f5b4c7e6d74e05 (diff)
downloadphp-git-7eb045d31a108323e3878947419cde94e2ba8645.tar.gz
API cleanup. Removed unused functions (kept compatibility macros).
Diffstat (limited to 'Zend/zend.h')
-rw-r--r--Zend/zend.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Zend/zend.h b/Zend/zend.h
index 7db86dd986..b1c1e66867 100644
--- a/Zend/zend.h
+++ b/Zend/zend.h
@@ -243,6 +243,10 @@ ZEND_API size_t zend_print_zval(zval *expr, int indent);
ZEND_API void zend_print_zval_r(zval *expr, int indent);
ZEND_API zend_string *zend_print_zval_r_to_str(zval *expr, int indent);
ZEND_API void zend_print_flat_zval_r(zval *expr);
+
+#define zend_print_variable(var) \
+ zend_print_zval((var), 0)
+
ZEND_API ZEND_COLD void zend_output_debug_string(zend_bool trigger_break, const char *format, ...) ZEND_ATTRIBUTE_FORMAT(printf, 2, 3);
ZEND_API void zend_activate(void);