summaryrefslogtreecommitdiff
path: root/Zend/zend_closures.h
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_closures.h')
-rw-r--r--Zend/zend_closures.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/zend_closures.h b/Zend/zend_closures.h
index 4f8ae6dd91..674c4b3013 100644
--- a/Zend/zend_closures.h
+++ b/Zend/zend_closures.h
@@ -24,14 +24,14 @@
BEGIN_EXTERN_C()
-void zend_register_closure_ce(TSRMLS_D);
+void zend_register_closure_ce(void);
extern ZEND_API zend_class_entry *zend_ce_closure;
-ZEND_API void zend_create_closure(zval *res, zend_function *op_array, zend_class_entry *scope, zval *this_ptr TSRMLS_DC);
-ZEND_API zend_function *zend_get_closure_invoke_method(zend_object *obj TSRMLS_DC);
-ZEND_API const zend_function *zend_get_closure_method_def(zval *obj TSRMLS_DC);
-ZEND_API zval* zend_get_closure_this_ptr(zval *obj TSRMLS_DC);
+ZEND_API void zend_create_closure(zval *res, zend_function *op_array, zend_class_entry *scope, zval *this_ptr);
+ZEND_API zend_function *zend_get_closure_invoke_method(zend_object *obj);
+ZEND_API const zend_function *zend_get_closure_method_def(zval *obj);
+ZEND_API zval* zend_get_closure_this_ptr(zval *obj);
END_EXTERN_C()