diff options
author | Joey Smith <joey@php.net> | 2000-01-03 18:53:29 +0000 |
---|---|---|
committer | Joey Smith <joey@php.net> | 2000-01-03 18:53:29 +0000 |
commit | c5589a9dd5dd16d80d0569b24ff6a1d81e034a83 (patch) | |
tree | e5ec666190bb38d45efda581c0213e911b7794bf /Zend/zend_operators.c | |
parent | 4595bf1e20bd2deaaed540d74bc346f62bac9fc0 (diff) | |
download | php-git-c5589a9dd5dd16d80d0569b24ff6a1d81e034a83.tar.gz |
# There is no functions/ directory in PHP4.
@ number.h comes from ext/bcmath, not functions/
number.h comes from ext/bcmath, not functions/
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r-- | Zend/zend_operators.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index ff57c87a64..7019014831 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -31,10 +31,12 @@ #include "zend_list.h" #include "zend_fast_cache.h" + #if WITH_BCMATH -#include "functions/number.h" +#include "ext/bcmath/number.h" #endif + ZEND_API void convert_scalar_to_number(zval *op) { char *strval; |