sterling Fri Nov 8 10:49:32 2002 EDT
Modified files:
/php4/ext/standard basic_functions.c
Log:
use consistent constants
Index: php4/ext/standard/basic_functions.c
diff -u php4/ext/standard/basic_functions.c:1.542
php4/ext/standard/basic_functions.c:1.543
--- php4/ext/standard/basic_functions.c:1.542 Tue Nov 5 01:05:48 2002
+++ php4/ext/standard/basic_functions.c Fri Nov 8 10:49:32 2002
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: basic_functions.c,v 1.542 2002/11/05 06:05:48 ssb Exp $ */
+/* $Id: basic_functions.c,v 1.543 2002/11/08 15:49:32 sterling Exp $ */
#include "php.h"
#include "php_streams.h"
@@ -467,11 +467,17 @@
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
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
