summaryrefslogtreecommitdiff
path: root/ext/standard/php_math.h
diff options
context:
space:
mode:
authorJeroen van Wolffelaar <jeroen@php.net>2001-08-15 19:08:59 +0000
committerJeroen van Wolffelaar <jeroen@php.net>2001-08-15 19:08:59 +0000
commit2b6bafb2698b2a8c7d43f43e6e367d767835e529 (patch)
tree0a379b6a73f75f768526c0e30cb47e0eb9c3a71d /ext/standard/php_math.h
parentd62fbbd5a856fca9b96230e89dc4b31229681782 (diff)
downloadphp-git-2b6bafb2698b2a8c7d43f43e6e367d767835e529.tar.gz
Remove cbrt also, and mark logm1 and exp1p as expermintal
Diffstat (limited to 'ext/standard/php_math.h')
-rw-r--r--ext/standard/php_math.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/ext/standard/php_math.h b/ext/standard/php_math.h
index 7ccc384630..beef7dd160 100644
--- a/ext/standard/php_math.h
+++ b/ext/standard/php_math.h
@@ -55,13 +55,15 @@ PHP_FUNCTION(number_format);
PHP_FUNCTION(deg2rad);
PHP_FUNCTION(rad2deg);
-PHP_FUNCTION(exp2);
-PHP_FUNCTION(exp10);
-PHP_FUNCTION(log2);
-PHP_FUNCTION(cbrt);
+ /*
+ WARNING: these functions are expermental: they could change their names or
+ disappear in the next version of PHP!
+ */
PHP_FUNCTION(hypot);
PHP_FUNCTION(expm1);
PHP_FUNCTION(log1p);
+
+
PHP_FUNCTION(sinh);
PHP_FUNCTION(cosh);
PHP_FUNCTION(tanh);