summaryrefslogtreecommitdiff
path: root/coroutine/win64/Context.h
diff options
context:
space:
mode:
Diffstat (limited to 'coroutine/win64/Context.h')
-rw-r--r--coroutine/win64/Context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/coroutine/win64/Context.h b/coroutine/win64/Context.h
index ec2c0e8566..3b6ffb2175 100644
--- a/coroutine/win64/Context.h
+++ b/coroutine/win64/Context.h
@@ -25,7 +25,7 @@ struct coroutine_context
typedef COROUTINE(* coroutine_start)(coroutine_context *from, coroutine_context *self);
-inline void coroutine_initialize(
+static inline void coroutine_initialize(
coroutine_context *context,
coroutine_start start,
void *stack_pointer,
@@ -52,7 +52,7 @@ inline void coroutine_initialize(
coroutine_context * coroutine_transfer(coroutine_context * current, coroutine_context * target);
-inline void coroutine_destroy(coroutine_context * context)
+static inline void coroutine_destroy(coroutine_context * context)
{
}