mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:03:39 +03:00
fix compiler warning: function declaration isn't a prototype
This commit is contained in:
parent
d5affe1ada
commit
2d77f7cd48
2 changed files with 4 additions and 4 deletions
|
|
@ -45,8 +45,8 @@ void Curl_ntlm_cleanup(struct connectdata *conn);
|
|||
#endif
|
||||
|
||||
#ifdef USE_WINDOWS_SSPI
|
||||
CURLcode Curl_ntlm_global_init();
|
||||
void Curl_ntlm_global_cleanup();
|
||||
CURLcode Curl_ntlm_global_init(void);
|
||||
void Curl_ntlm_global_cleanup(void);
|
||||
#endif
|
||||
|
||||
/* Flag bits definitions based on http://davenport.sourceforge.net/ntlm.html */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue