mirror of
https://github.com/curl/curl.git
synced 2026-04-16 13:11:41 +03:00
fix compiler warning: external declaration in primary source file
This commit is contained in:
parent
61c0bdb09c
commit
09aa4cf2ca
1 changed files with 4 additions and 4 deletions
|
|
@ -3757,11 +3757,11 @@ output_expected(const char* url, const char* uploadfile)
|
|||
|
||||
static struct curl_slist *easycode;
|
||||
|
||||
CURLcode _my_setopt(CURL *curl, struct Configurable *config, const char *name,
|
||||
CURLoption tag, ...);
|
||||
static CURLcode _my_setopt(CURL *curl, struct Configurable *config,
|
||||
const char *name, CURLoption tag, ...);
|
||||
|
||||
CURLcode _my_setopt(CURL *curl, struct Configurable *config, const char *name,
|
||||
CURLoption tag, ...)
|
||||
static CURLcode _my_setopt(CURL *curl, struct Configurable *config,
|
||||
const char *name, CURLoption tag, ...)
|
||||
{
|
||||
va_list arg;
|
||||
CURLcode ret;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue