Export zend_type_to_string() with ZEND_API

This commit is contained in:
Derick Rethans 2020-02-03 10:26:20 +00:00
parent 4d80c3b7e0
commit d6b04bfbd5
2 changed files with 2 additions and 2 deletions

View File

@ -1225,7 +1225,7 @@ zend_string *zend_type_to_string_resolved(zend_type type, zend_class_entry *scop
return str;
}
zend_string *zend_type_to_string(zend_type type) {
ZEND_API zend_string *zend_type_to_string(zend_type type) {
return zend_type_to_string_resolved(type, NULL);
}

View File

@ -848,7 +848,7 @@ int ZEND_FASTCALL zendlex(zend_parser_stack_elem *elem);
void zend_assert_valid_class_name(const zend_string *const_name);
zend_string *zend_type_to_string_resolved(zend_type type, zend_class_entry *scope);
zend_string *zend_type_to_string(zend_type type);
ZEND_API zend_string *zend_type_to_string(zend_type type);
/* BEGIN: OPCODES */