]> granicus.if.org Git - php/commitdiff
Fix build
authorMatt Wilmas <mattwil@php.net>
Thu, 8 May 2008 04:23:26 +0000 (04:23 +0000)
committerMatt Wilmas <mattwil@php.net>
Thu, 8 May 2008 04:23:26 +0000 (04:23 +0000)
ext/standard/math.c

index 886249007989a42cfbdd46c449fc3a15341f38ac..ac9c206437c3b51ddf8a092f106d0ad0c6d9fcb9 100644 (file)
@@ -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));
 }
 /* }}} */