diff options
author | Anatol Belski <ab@php.net> | 2014-12-13 23:06:14 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-13 23:06:14 +0100 |
commit | bdeb220f48825642f84cdbf3ff23a30613c92e86 (patch) | |
tree | 1a6cf34d20420e4815b4becb21311a4457d84103 /Zend/zend_float.c | |
parent | bb66f385d09e7e55390e9f57fcbca08f6b43ff91 (diff) | |
download | php-git-bdeb220f48825642f84cdbf3ff23a30613c92e86.tar.gz |
first shot remove TSRMLS_* things
Diffstat (limited to 'Zend/zend_float.c')
-rw-r--r-- | Zend/zend_float.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_float.c b/Zend/zend_float.c index ca0130134c..31723a699d 100644 --- a/Zend/zend_float.c +++ b/Zend/zend_float.c @@ -22,7 +22,7 @@ #include "zend_compile.h" #include "zend_float.h" -ZEND_API void zend_init_fpu(TSRMLS_D) /* {{{ */ +ZEND_API void zend_init_fpu(void) /* {{{ */ { #if XPFPA_HAVE_CW XPFPA_DECLARE @@ -38,7 +38,7 @@ ZEND_API void zend_init_fpu(TSRMLS_D) /* {{{ */ } /* }}} */ -ZEND_API void zend_shutdown_fpu(TSRMLS_D) /* {{{ */ +ZEND_API void zend_shutdown_fpu(void) /* {{{ */ { #if XPFPA_HAVE_CW if (EG(saved_fpu_cw_ptr)) { @@ -49,7 +49,7 @@ ZEND_API void zend_shutdown_fpu(TSRMLS_D) /* {{{ */ } /* }}} */ -ZEND_API void zend_ensure_fpu_mode(TSRMLS_D) /* {{{ */ +ZEND_API void zend_ensure_fpu_mode(void) /* {{{ */ { XPFPA_DECLARE |