From: Derick Rethans Date: Thu, 24 Oct 2002 18:49:57 +0000 (+0000) Subject: - Protect function definitions with #ifdef's too X-Git-Tag: php-4.3.0pre2~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67670560e4be002d96250d5402b07055ddef5d2e;p=php - Protect function definitions with #ifdef's too --- diff --git a/ext/standard/php_math.h b/ext/standard/php_math.h index a53b50727e..8cb2b89973 100644 --- a/ext/standard/php_math.h +++ b/ext/standard/php_math.h @@ -74,9 +74,16 @@ PHP_FUNCTION(log1p); PHP_FUNCTION(sinh); PHP_FUNCTION(cosh); PHP_FUNCTION(tanh); + +#ifdef HAVE_ASINH PHP_FUNCTION(asinh); +#endif +#ifdef HAVE_ACOSH PHP_FUNCTION(acosh); +#endif +#ifdef HAVE_ATANH PHP_FUNCTION(atanh); +#endif #include