summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
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);