From cb5dcc68f82ba75cd054122dc8bf85553bf41e1a Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Mon, 26 Mar 2007 20:27:22 +0100 Subject: [PATCH] loader: Replace inline static with static inline. --- loader/kthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/kthread.c b/loader/kthread.c index 1c43be54141..2b64e27b436 100644 --- a/loader/kthread.c +++ b/loader/kthread.c @@ -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. */ -inline static char *get_temp_stack(void) +static inline char *get_temp_stack(void) { unsigned int next = interlocked_xchg_add( &next_temp_stack, 1 ); return temp_stacks[next % NB_TEMP_STACKS] + TEMP_STACK_SIZE;