diff options
author | Stanislav Malyshev <stas@php.net> | 2014-11-23 16:25:10 -0800 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2014-11-23 16:25:10 -0800 |
commit | 7daa97a3831f4b21eaee656415784538e686ba04 (patch) | |
tree | 6524d109e00da32931636142c5200421d8c908de /Zend/zend_float.h | |
parent | b4ef6a91acf2c97a43fbcc8fd9b6785f63ff5cf0 (diff) | |
parent | 5a3e236bd5f40d17812b4da23ef19a4f4f67abc6 (diff) | |
download | php-git-7daa97a3831f4b21eaee656415784538e686ba04.tar.gz |
Merge branch 'PHP-5.6'
* PHP-5.6:
fix NEWS order
update NEWS
Update the VM generation script, per Bob.
Update NEWS after rebase.
Add BEGIN_EXTERN_C() and END_EXTERN_C() to .h files missing them.
Diffstat (limited to 'Zend/zend_float.h')
-rw-r--r-- | Zend/zend_float.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Zend/zend_float.h b/Zend/zend_float.h index e3bb72e580..008bf07854 100644 --- a/Zend/zend_float.h +++ b/Zend/zend_float.h @@ -21,6 +21,8 @@ #ifndef ZEND_FLOAT_H #define ZEND_FLOAT_H +BEGIN_EXTERN_C() + /* Define functions for FP initialization and de-initialization. */ @@ -28,6 +30,8 @@ extern ZEND_API void zend_init_fpu(TSRMLS_D); extern ZEND_API void zend_shutdown_fpu(TSRMLS_D); extern ZEND_API void zend_ensure_fpu_mode(TSRMLS_D); +END_EXTERN_C() + /* Copy of the contents of xpfpa.h (which is under public domain) See http://wiki.php.net/rfc/rounding for details. |