summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-11-16 17:09:01 +0300
committerDmitry Stogov <dmitry@zend.com>2017-11-16 17:09:01 +0300
commitce18738a30b3d7f20b392c9167aa251c009a0c21 (patch)
tree08b65848c83fac1e601ace51c110be74844bf362 /Zend/zend_operators.c
parent50eeb46e216520027b147a7117f902d4c4a54ebc (diff)
downloadphp-git-ce18738a30b3d7f20b392c9167aa251c009a0c21.tar.gz
Removed "_" from API functions.
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r--Zend/zend_operators.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c
index 076c170f36..dcbe40f92c 100644
--- a/Zend/zend_operators.c
+++ b/Zend/zend_operators.c
@@ -788,7 +788,7 @@ try_again:
}
/* }}} */
-ZEND_API zend_long ZEND_FASTCALL _zval_get_long_func(zval *op) /* {{{ */
+ZEND_API zend_long ZEND_FASTCALL zval_get_long_func(zval *op) /* {{{ */
{
return _zval_get_long_func_ex(op, 1);
}
@@ -800,7 +800,7 @@ static zend_long ZEND_FASTCALL _zval_get_long_func_noisy(zval *op) /* {{{ */
}
/* }}} */
-ZEND_API double ZEND_FASTCALL _zval_get_double_func(zval *op) /* {{{ */
+ZEND_API double ZEND_FASTCALL zval_get_double_func(zval *op) /* {{{ */
{
try_again:
switch (Z_TYPE_P(op)) {
@@ -839,7 +839,7 @@ try_again:
}
/* }}} */
-ZEND_API zend_string* ZEND_FASTCALL _zval_get_string_func(zval *op) /* {{{ */
+ZEND_API zend_string* ZEND_FASTCALL zval_get_string_func(zval *op) /* {{{ */
{
try_again:
switch (Z_TYPE_P(op)) {