diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2008-05-05 07:29:41 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2008-05-05 07:29:41 +0000 |
commit | f61731874a5682ba49269a29b30a632486c540b4 (patch) | |
tree | 896609818c5697bdb876b1872311f061a0ce8be1 /ext/standard/php_math.h | |
parent | 94697acff9c0e4a1e7ae36cb5de1f577f5f5325b (diff) | |
download | php-git-f61731874a5682ba49269a29b30a632486c540b4.tar.gz |
Merge PHP_5_3 - Implemented Windows support for asinh(), acosh(), atanh(), log1p() and expm1()
[DOC] Merge_5_3
Diffstat (limited to 'ext/standard/php_math.h')
-rw-r--r-- | ext/standard/php_math.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/standard/php_math.h b/ext/standard/php_math.h index 346be97967..b3fd245e75 100644 --- a/ext/standard/php_math.h +++ b/ext/standard/php_math.h @@ -72,23 +72,15 @@ PHP_FUNCTION(rad2deg); */ PHP_FUNCTION(hypot); PHP_FUNCTION(expm1); -#ifdef HAVE_LOG1P PHP_FUNCTION(log1p); -#endif PHP_FUNCTION(sinh); PHP_FUNCTION(cosh); PHP_FUNCTION(tanh); -#ifdef HAVE_ASINH PHP_FUNCTION(asinh); -#endif -#ifdef HAVE_ACOSH PHP_FUNCTION(acosh); -#endif -#ifdef HAVE_ATANH PHP_FUNCTION(atanh); -#endif #include <math.h> |