diff options
author | Anatol Belski <ab@php.net> | 2015-03-13 20:25:10 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-03-13 20:25:10 +0100 |
commit | e78971cd7bd53b0d18dacedd88f3daaae9aa592f (patch) | |
tree | ae45b943b7bee084dac76ed5041308857f1ada06 /Zend/zend_compile.h | |
parent | db10b7252306b37ccd8795abeea565e0b18434aa (diff) | |
download | php-git-e78971cd7bd53b0d18dacedd88f3daaae9aa592f.tar.gz |
fix syntax for the Visual studio compat
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r-- | Zend/zend_compile.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 72f61ac433..45441e2108 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -631,9 +631,8 @@ const char *zend_get_zendtext(void); int zend_get_zendleng(void); #endif - -typedef int ZEND_FASTCALL (*unary_op_type)(zval *, zval *); -typedef int ZEND_FASTCALL (*binary_op_type)(zval *, zval *, zval *); +typedef int (ZEND_FASTCALL *unary_op_type)(zval *, zval *); +typedef int (ZEND_FASTCALL *binary_op_type)(zval *, zval *, zval *); ZEND_API unary_op_type get_unary_op(int opcode); ZEND_API binary_op_type get_binary_op(int opcode); |