Commit 13595fd3 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent 8efa0fb0
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment