diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-03-01 20:11:28 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-03-01 20:16:33 +0000 |
commit | 46b1d0a047faa9afa1de506adb8342f972e0918c (patch) | |
tree | 34f6682f3e53a2b0f733ed98cb3d89cf659f63a6 /src/tool_metalink.h | |
parent | eba197161a5917631dd7732de842c68e3159c951 (diff) | |
download | curl-46b1d0a047faa9afa1de506adb8342f972e0918c.tar.gz |
tool_metalink.h: Fixed compilation warning
warning: declaration of 'struct GlobalConfig' will not be visible
outside of this function
Diffstat (limited to 'src/tool_metalink.h')
-rw-r--r-- | src/tool_metalink.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tool_metalink.h b/src/tool_metalink.h index 339fdac0f..368590681 100644 --- a/src/tool_metalink.h +++ b/src/tool_metalink.h @@ -23,6 +23,9 @@ ***************************************************************************/ #include "tool_setup.h" +struct GlobalConfig; +struct OperationConfig; + /* returns 1 for success, 0 otherwise (we use OpenSSL *_Init fncs directly) */ typedef int (* Curl_digest_init_func)(void *context); |