diff options
author | Dmitry Stogov <dmitry@zend.com> | 2014-09-24 20:31:22 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2014-09-24 20:31:22 +0400 |
commit | 6a09bdff6a9ec30f744fa12aeb2875a764fc34c5 (patch) | |
tree | 641697471db6411d51b39a31f29529873c26d21d | |
parent | 702829dff501ad837d360905e966274539341e0a (diff) | |
download | php-git-6a09bdff6a9ec30f744fa12aeb2875a764fc34c5.tar.gz |
Fixed C++ incompatibility
-rw-r--r-- | Zend/zend_operators.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index adb30f603f..39a7e1f541 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -285,7 +285,6 @@ ZEND_API int zend_atoi(const char *str, int str_len); ZEND_API zend_long zend_atol(const char *str, int str_len); ZEND_API void zend_locale_sprintf_double(zval *op ZEND_FILE_LINE_DC); -END_EXTERN_C() #define convert_to_ex_master(pzv, lower_type, upper_type) \ if (Z_TYPE_P(pzv)!=upper_type) { \ @@ -928,6 +927,8 @@ static zend_always_inline char *zend_print_long_to_buf(char *buf, zend_long num) ZEND_API zend_string *zend_long_to_str(zend_long num); +END_EXTERN_C() + #endif /* |