-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Closed
Labels
Description
When compiling ./src/curl.exe, I get these warnings on missing prototypes:
tool_cb_dbg.c(260): warning C4013: 'convert_char' undefined; assuming extern returning int
tool_formparse.c(335): warning C4013: 'convert_to_network' undefined; assuming extern returning int
tool_getparam.c(1324): warning C4013: 'convert_to_network' undefined; assuming extern returning int
Using MSVC-2015, 32-bit and -DHAVE_ICONV -DCURL_DOES_CONVERSIONS.
The fix should simply be to add a:
#include "tool_convert.h"
in those 3 files AFAICS.