diff options
Diffstat (limited to 'ext/standard/math.c')
-rw-r--r-- | ext/standard/math.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/math.c b/ext/standard/math.c index b0676fdaa9..bfdade04ca 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -81,7 +81,8 @@ PHP_FUNCTION(ceil) /* {{{ proto double floor(double number) Returns the next lowest integer value from the number */ -PHP_FUNCTION(floor) { +PHP_FUNCTION(floor) +{ zval **value; if (ZEND_NUM_ARGS()!=1||zend_get_parameters_ex(1,&value)==FAILURE) { |