summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.h
diff options
context:
space:
mode:
authorMatt Wilmas <mattwil@php.net>2009-03-18 01:08:12 +0000
committerMatt Wilmas <mattwil@php.net>2009-03-18 01:08:12 +0000
commit6bb0ac971265862105dac55e305ea0a897edbd4b (patch)
treee30da5039c6a9cd5b1890ee4ae2a80ebdbd1e4ba /Zend/zend_operators.h
parent30d058488eb25b30c0097cbe6781ccc49e9fbf37 (diff)
downloadphp-git-6bb0ac971265862105dac55e305ea0a897edbd4b.tar.gz
MFH: Fixed bug #45877 (Array key '2147483647' left as string)
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r--Zend/zend_operators.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h
index 19f3a32461..f549dad1b5 100644
--- a/Zend/zend_operators.h
+++ b/Zend/zend_operators.h
@@ -36,18 +36,6 @@
#include "ext/bcmath/libbcmath/src/bcmath.h"
#endif
-#if SIZEOF_LONG == 4
-#define MAX_LENGTH_OF_LONG 11
-static const char long_min_digits[] = "2147483648";
-#elif SIZEOF_LONG == 8
-#define MAX_LENGTH_OF_LONG 20
-static const char long_min_digits[] = "9223372036854775808";
-#else
-#error "Unknown SIZEOF_LONG"
-#endif
-
-#define MAX_LENGTH_OF_DOUBLE 32
-
BEGIN_EXTERN_C()
ZEND_API int add_function(zval *result, zval *op1, zval *op2 TSRMLS_DC);
ZEND_API int sub_function(zval *result, zval *op1, zval *op2 TSRMLS_DC);