mirror of
https://github.com/curl/curl.git
synced 2026-08-26 07:03:33 +03:00
fix compiler warning: external definition with no prior declaration
This commit is contained in:
parent
8b2bfa4212
commit
f7ef60c13f
2 changed files with 3 additions and 2 deletions
|
|
@ -83,6 +83,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <curl/curl.h>
|
#include <curl/curl.h>
|
||||||
|
#include "parsedate.h"
|
||||||
|
|
||||||
const char * const Curl_wkday[] =
|
const char * const Curl_wkday[] =
|
||||||
{"Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"};
|
{"Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"};
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,8 @@
|
||||||
|
|
||||||
#include <curl/mprintf.h>
|
#include <curl/mprintf.h>
|
||||||
|
|
||||||
const char *HOSTHEADER = "Host: www.host.foo.com";
|
static const char *HOSTHEADER = "Host: www.host.foo.com";
|
||||||
const char *JAR = "log/jar506";
|
static const char *JAR = "log/jar506";
|
||||||
#define THREADS 2
|
#define THREADS 2
|
||||||
|
|
||||||
/* struct containing data of a thread */
|
/* struct containing data of a thread */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue