diff options
author | Xinchen Hui <laruence@php.net> | 2014-05-24 21:11:13 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2014-05-24 21:11:13 +0800 |
commit | 666197b8cc889af6ad0dd794405e138ff4fb2c34 (patch) | |
tree | d9309834a1929651ffed5e5e689234c9c29c9e11 | |
parent | 80a2716b56b0eabae018108605ce3ecfecd5ce3c (diff) | |
download | php-git-666197b8cc889af6ad0dd794405e138ff4fb2c34.tar.gz |
Added folder mark
-rw-r--r-- | Zend/zend_operators.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index f022909bc3..ef21b47a41 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -963,7 +963,7 @@ ZEND_API int mul_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ * } /* }}} */ -ZEND_API int pow_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) +ZEND_API int pow_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */ { zval op1_copy, op2_copy; int converted = 0; @@ -1045,6 +1045,7 @@ ZEND_API int pow_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) } } } +/* }}} */ ZEND_API int div_function(zval *result, zval *op1, zval *op2 TSRMLS_DC) /* {{{ */ { |