From 01afb02bad2611d9f0db005ef3fc96576b6ffd1d Mon Sep 17 00:00:00 2001 From: Matt Wilmas Date: Thu, 8 May 2008 04:23:26 +0000 Subject: [PATCH] Fix build --- ext/standard/math.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } /* }}} */ -- 2.50.1