From: Matt Wilmas Date: Thu, 8 May 2008 04:23:26 +0000 (+0000) Subject: Fix build X-Git-Tag: BEFORE_NEW_PARAMETER_PARSE~260 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01afb02bad2611d9f0db005ef3fc96576b6ffd1d;p=php Fix build --- diff --git a/ext/standard/math.c b/ext/standard/math.c index 8862490079..ac9c206437 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -354,7 +354,7 @@ PHP_FUNCTION(asinh) if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d", &num) == FAILURE) { return; } - RETURN_DOUBLE(asinh(num)); + RETURN_DOUBLE(php_asinh(num)); } /* }}} */