X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fthreads.h;h=d4306f631a966132f926ed56f7602b25a66ea8dc;hb=c26eb87aec7438d167fa2f460a3f412db09c0ac5;hp=176b69c2ee657c0680467df3fbd24e842be2ca3f;hpb=6be74d17df75714066b36cfa6ae40081526ef477;p=oweals%2Fminetest.git diff --git a/src/threads.h b/src/threads.h index 176b69c2e..d4306f631 100644 --- a/src/threads.h +++ b/src/threads.h @@ -58,11 +58,11 @@ with this program; if not, write to the Free Software Foundation, Inc., // ThreadStartFunc // #if USE_CPP11_THREADS || USE_POSIX_THREADS - typedef void *(ThreadStartFunc)(void *param); + typedef void *ThreadStartFunc(void *param); #elif defined(_WIN32_WCE) - typedef DWORD (ThreadStartFunc)(LPVOID param); + typedef DWORD ThreadStartFunc(LPVOID param); #elif defined(_WIN32) - typedef DWORD WINAPI (ThreadStartFunc)(LPVOID param); + typedef DWORD WINAPI ThreadStartFunc(LPVOID param); #endif