summaryrefslogtreecommitdiff
path: root/coroutine/x86
diff options
context:
space:
mode:
Diffstat (limited to 'coroutine/x86')
-rw-r--r--coroutine/x86/Context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/coroutine/x86/Context.h b/coroutine/x86/Context.h
index e54dedd776..8a65800891 100644
--- a/coroutine/x86/Context.h
+++ b/coroutine/x86/Context.h
@@ -23,7 +23,7 @@ typedef struct
void **stack_pointer;
} coroutine_context;
-typedef void(* coroutine_start)(coroutine_context *from, coroutine_context *self) __attribute__((fastcall));
+typedef COROUTINE(* coroutine_start)(coroutine_context *from, coroutine_context *self) __attribute__((fastcall));
void coroutine_initialize(
coroutine_context *context,