diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-08-05 18:45:07 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-08-07 12:35:30 +0200 |
commit | af80d8a14e5540a151e2b40f165ebe122467484b (patch) | |
tree | c852017699321228cb32ae5764f817ee64be1a2a /ext/standard/php_math.h | |
parent | 3bb183036976fc8bfdf039b41efe1e4312894937 (diff) | |
download | php-git-af80d8a14e5540a151e2b40f165ebe122467484b.tar.gz |
Add more argument types to stubs
Closes GH-5943
Diffstat (limited to 'ext/standard/php_math.h')
-rw-r--r-- | ext/standard/php_math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_math.h b/ext/standard/php_math.h index c3ce7cc728..d592b131e9 100644 --- a/ext/standard/php_math.h +++ b/ext/standard/php_math.h @@ -21,7 +21,7 @@ PHPAPI double _php_math_round(double value, int places, int mode); PHPAPI zend_string *_php_math_number_format(double d, int dec, char dec_point, char thousand_sep); PHPAPI zend_string *_php_math_number_format_ex(double d, int dec, const char *dec_point, size_t dec_point_len, const char *thousand_sep, size_t thousand_sep_len); -PHPAPI zend_string * _php_math_longtobase(zval *arg, int base); +PHPAPI zend_string * _php_math_longtobase(zend_long arg, int base); PHPAPI zend_long _php_math_basetolong(zval *arg, int base); PHPAPI void _php_math_basetozval(zend_string *str, int base, zval *ret); PHPAPI zend_string * _php_math_zvaltobase(zval *arg, int base); |