Commit cb5dcc68 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

loader: Replace inline static with static inline.

parent 4125821a
...@@ -167,7 +167,7 @@ static int next_temp_stack; /* next temp stack to use */ ...@@ -167,7 +167,7 @@ static int next_temp_stack; /* next temp stack to use */
* *
* Get a temporary stack address to run the thread exit code on. * Get a temporary stack address to run the thread exit code on.
*/ */
inline static char *get_temp_stack(void) static inline char *get_temp_stack(void)
{ {
unsigned int next = interlocked_xchg_add( &next_temp_stack, 1 ); unsigned int next = interlocked_xchg_add( &next_temp_stack, 1 );
return temp_stacks[next % NB_TEMP_STACKS] + TEMP_STACK_SIZE; return temp_stacks[next % NB_TEMP_STACKS] + TEMP_STACK_SIZE;
......
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