]> granicus.if.org Git - php/commitdiff
use consistent constants
authorSterling Hughes <sterling@php.net>
Fri, 8 Nov 2002 15:49:32 +0000 (15:49 +0000)
committerSterling Hughes <sterling@php.net>
Fri, 8 Nov 2002 15:49:32 +0000 (15:49 +0000)
ext/standard/basic_functions.c

index 02081675508f6c6c6295ed1ec9b9b4e2574f0ade..93d9385d1e60bdf35c56b9f9ce461d89792a3a63 100644 (file)
@@ -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