summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2002-11-08 15:49:32 +0000
committerSterling Hughes <sterling@php.net>2002-11-08 15:49:32 +0000
commit80f88a9851187584cd32ab905b2c620bf78a188f (patch)
tree75aef10de3524f4139f63c732ca26bb74eae0388
parentf2f443f0664be75736549aca792668546ff69074 (diff)
downloadphp-git-80f88a9851187584cd32ab905b2c620bf78a188f.tar.gz
use consistent constants
-rw-r--r--ext/standard/basic_functions.c10
1 files changed, 8 insertions, 2 deletions
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