summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2015-03-13 20:25:10 +0100
committerAnatol Belski <ab@php.net>2015-03-13 20:25:10 +0100
commite78971cd7bd53b0d18dacedd88f3daaae9aa592f (patch)
treeae45b943b7bee084dac76ed5041308857f1ada06 /Zend/zend_compile.h
parentdb10b7252306b37ccd8795abeea565e0b18434aa (diff)
downloadphp-git-e78971cd7bd53b0d18dacedd88f3daaae9aa592f.tar.gz
fix syntax for the Visual studio compat
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h5
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);