mirror of
https://github.com/php/php-src.git
synced 2026-04-29 03:03:26 +02:00
Remove duplicated function definition
This commit is contained in:
+14
-20
@@ -59,35 +59,29 @@ extern int le_curl_share_handle;
|
||||
PHP_MINIT_FUNCTION(curl);
|
||||
PHP_MSHUTDOWN_FUNCTION(curl);
|
||||
PHP_MINFO_FUNCTION(curl);
|
||||
PHP_FUNCTION(curl_version);
|
||||
PHP_FUNCTION(curl_init);
|
||||
|
||||
PHP_FUNCTION(curl_close);
|
||||
PHP_FUNCTION(curl_copy_handle);
|
||||
PHP_FUNCTION(curl_setopt);
|
||||
PHP_FUNCTION(curl_setopt_array);
|
||||
PHP_FUNCTION(curl_errno);
|
||||
PHP_FUNCTION(curl_error);
|
||||
PHP_FUNCTION(curl_exec);
|
||||
PHP_FUNCTION(curl_getinfo);
|
||||
PHP_FUNCTION(curl_error);
|
||||
PHP_FUNCTION(curl_errno);
|
||||
PHP_FUNCTION(curl_close);
|
||||
PHP_FUNCTION(curl_init);
|
||||
PHP_FUNCTION(curl_setopt);
|
||||
PHP_FUNCTION(curl_setopt_array);
|
||||
PHP_FUNCTION(curl_version);
|
||||
|
||||
#if LIBCURL_VERSION_NUM >= 0x070c01 /* 7.12.1 */
|
||||
PHP_FUNCTION(curl_reset);
|
||||
#endif
|
||||
#if LIBCURL_VERSION_NUM > 0x070f03 /* 7.15.4 */
|
||||
PHP_FUNCTION(curl_escape);
|
||||
PHP_FUNCTION(curl_unescape);
|
||||
#endif
|
||||
|
||||
PHP_FUNCTION(curl_multi_init);
|
||||
PHP_FUNCTION(curl_multi_add_handle);
|
||||
PHP_FUNCTION(curl_multi_remove_handle);
|
||||
PHP_FUNCTION(curl_multi_select);
|
||||
PHP_FUNCTION(curl_multi_close);
|
||||
PHP_FUNCTION(curl_multi_exec);
|
||||
PHP_FUNCTION(curl_multi_getcontent);
|
||||
PHP_FUNCTION(curl_multi_info_read);
|
||||
PHP_FUNCTION(curl_multi_close);
|
||||
PHP_FUNCTION(curl_share_init);
|
||||
PHP_FUNCTION(curl_multi_init);
|
||||
PHP_FUNCTION(curl_multi_remove_handle);
|
||||
PHP_FUNCTION(curl_multi_select);
|
||||
|
||||
PHP_FUNCTION(curl_share_close);
|
||||
PHP_FUNCTION(curl_share_init);
|
||||
PHP_FUNCTION(curl_share_setopt);
|
||||
|
||||
#if LIBCURL_VERSION_NUM >= 0x070c01 /* 7.12.1 */
|
||||
|
||||
Reference in New Issue
Block a user