From: Sterling Hughes Date: Fri, 8 Nov 2002 15:49:32 +0000 (+0000) Subject: use consistent constants X-Git-Tag: php-4.3.0RC1~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=80f88a9851187584cd32ab905b2c620bf78a188f;p=php use consistent constants --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 0208167550..93d9385d1e 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -467,11 +467,17 @@ function_entry basic_functions[] = { PHP_FE(cosh, NULL) PHP_FE(tanh, NULL) -#if !defined(PHP_WIN32) && !defined(NETWARE) +#ifdef HAVE_ASINH PHP_FE(asinh, NULL) +#endif +#ifdef HAVE_ACOSH PHP_FE(acosh, NULL) +#endif +#ifdef HAVE_ATANH PHP_FE(atanh, NULL) - PHP_FE(expm1, NULL) +#endif +#if !defined(PHP_WIN32) && !defined(NETWARE) + PHP_FE(expm1, NULL) PHP_FE(log1p, NULL) #endif