mirror of
https://github.com/curl/curl.git
synced 2026-08-03 08:10:29 +03:00
nope
This commit is contained in:
parent
ec1a1f438e
commit
8b00536062
1 changed files with 4 additions and 2 deletions
|
|
@ -68,11 +68,13 @@ static size_t write_memory_callback(char *contents, size_t size,
|
|||
return realsize;
|
||||
}
|
||||
|
||||
static
|
||||
#if defined(USE_THREADS_POSIX) || defined(USE_THREADS_WIN32)
|
||||
static CURL_THREAD_RETURN_T CURL_STDCALL test_thread(void *ptr)
|
||||
CURL_THREAD_RETURN_T CURL_STDCALL
|
||||
#else
|
||||
static unsigned int test_thread(void *ptr)
|
||||
unsigned int
|
||||
#endif
|
||||
test_thread(void *ptr)
|
||||
{
|
||||
struct Ctx *ctx = (struct Ctx *)ptr;
|
||||
CURLcode res = CURLE_OK;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue