From 9feabd351cb7e40175c9003251ca0556cbfbb4fb Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 11 Feb 2020 08:01:44 -0800 Subject: [PATCH] Make sure SDL_CreateThread has the same signature regardless of how the DLL was created. --- include/SDL_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_thread.h b/include/SDL_thread.h index b9e9575d0a57c..7a779d5c907fd 100644 --- a/include/SDL_thread.h +++ b/include/SDL_thread.h @@ -69,7 +69,7 @@ typedef enum { */ typedef int (SDLCALL * SDL_ThreadFunction) (void *data); -#if defined(__WIN32__) && !defined(HAVE_LIBC) +#if defined(__WIN32__) /** * \file SDL_thread.h *