aboutsummaryrefslogtreecommitdiffstats
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 b3afed691f..a72ce530f8 100644
--- a/coroutine/win64/Context.h
+++ b/coroutine/win64/Context.h
@@ -19,10 +19,10 @@ extern "C" {
const size_t COROUTINE_REGISTERS = 8;
const size_t COROUTINE_XMM_REGISTERS = 1+10*2;
-struct coroutine_context
+typedef struct
{
void **stack_pointer;
-};
+} coroutine_context;
typedef void(* coroutine_start)(coroutine_context *from, coroutine_context *self);