ruby--ruby/coroutine/emscripten/Context.c

9 lines
170 B
C
Raw Normal View History

#include "Context.h"
void coroutine_trampoline(void * _context)
{
struct coroutine_context * context = _context;
context->entry_func(context->from, context);
}