msvcp120/tests: Make call_once(_ex)?_thread() static.

This commit is contained in:
Francois Gouget 2015-05-23 17:04:50 +02:00 committed by Alexandre Julliard
parent 8efa0fb0c4
commit 13595fd35f
1 changed files with 2 additions and 2 deletions

View File

@ -213,13 +213,13 @@ static void __cdecl call_once_ex_func(void *arg)
(*i)++;
}
DWORD WINAPI call_once_thread(void *arg)
static DWORD WINAPI call_once_thread(void *arg)
{
p__Call_once(&once, call_once_func);
return 0;
}
DWORD WINAPI call_once_ex_thread(void *arg)
static DWORD WINAPI call_once_ex_thread(void *arg)
{
p__Call_onceEx(&once, call_once_ex_func, &cnt);
return 0;