diff options
author | samuel <samuel@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-20 10:16:54 +0000 |
---|---|---|
committer | samuel <samuel@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-20 10:16:54 +0000 |
commit | 9481461cc338d410e25163638af484c38317029e (patch) | |
tree | f9ba6c108738d332cd1ad11e9ce06beeea26cacc /coroutine/win64/Context.h | |
parent | 42575570a908aac979a80b89266804c4c688dd7c (diff) |
Ensure start function has correct declaration.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65856 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'coroutine/win64/Context.h')
-rw-r--r-- | coroutine/win64/Context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coroutine/win64/Context.h b/coroutine/win64/Context.h index 94fcf53429..28173ba789 100644 --- a/coroutine/win64/Context.h +++ b/coroutine/win64/Context.h @@ -23,7 +23,7 @@ struct coroutine_context void **stack_pointer; }; -typedef void(* coroutine_start)(coroutine_context *from, coroutine_context *self); +typedef COROUTINE(* coroutine_start)(coroutine_context *from, coroutine_context *self); inline void coroutine_initialize( coroutine_context *context, |