Skip to content
Snippets Groups Projects
Commit eebcf909 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

provide protos to the functions to prevent warnings

parent fa8ecd3d
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,12 @@ const char *HOSTHEADER = "Host: www.host.foo.com";
const char *JAR = "log/jar506";
#define THREADS 2
void lock(CURL *handle, curl_lock_data data, curl_lock_access access,
void *useptr );
void unlock(CURL *handle, curl_lock_data data, void *useptr );
struct curl_slist *sethost(struct curl_slist *headers);
void *fire(void *ptr);
char *suburl(char *base, int i);
/* struct containing data of a thread */
struct Tdata {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment