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 /ext/curl/php_curl.h | |
parent | bb66f385d09e7e55390e9f57fcbca08f6b43ff91 (diff) | |
download | php-git-bdeb220f48825642f84cdbf3ff23a30613c92e86.tar.gz |
first shot remove TSRMLS_* things
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index ad44ae7b96..2b6ce548d0 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -114,8 +114,8 @@ PHP_FUNCTION(curl_pause); PHP_FUNCTION(curl_file_create); -void _php_curl_multi_close(zend_resource * TSRMLS_DC); -void _php_curl_share_close(zend_resource * TSRMLS_DC); +void _php_curl_multi_close(zend_resource *); +void _php_curl_share_close(zend_resource *); typedef struct { zval func_name; @@ -197,9 +197,9 @@ typedef struct { void _php_curl_cleanup_handle(php_curl *); void _php_curl_multi_cleanup_list(void *data); -void _php_curl_verify_handlers(php_curl *ch, int reporterror TSRMLS_DC); +void _php_curl_verify_handlers(php_curl *ch, int reporterror); -void curlfile_register_class(TSRMLS_D); +void curlfile_register_class(void); PHP_CURL_API extern zend_class_entry *curl_CURLFile_class; #else |