diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-02-19 13:03:04 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-19 13:03:04 +0000 | 
| commit | eebcf9094234c1d80e66b8ad21a158eecfdb185d (patch) | |
| tree | 3d8a116614fcc21664aa46ededc44b01f62a10f2 /tests/libtest | |
| parent | fa8ecd3d53cabc747cf2930bc9c3710b39b92ec5 (diff) | |
provide protos to the functions to prevent warnings
Diffstat (limited to 'tests/libtest')
| -rw-r--r-- | tests/libtest/lib506.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/libtest/lib506.c b/tests/libtest/lib506.c index 91ccb4ab2..03acf9a10 100644 --- a/tests/libtest/lib506.c +++ b/tests/libtest/lib506.c @@ -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 {  | 
