loader: Replace inline static with static inline.

oldstable
Andrew Talbot 2007-03-26 20:27:22 +01:00 committed by Alexandre Julliard
parent 4125821a99
commit cb5dcc68f8
1 changed files with 1 additions and 1 deletions

View File

@ -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;