summaryrefslogtreecommitdiff
path: root/coroutine/emscripten/Context.c
blob: 75c088daaa10527016733c78d3761b349f1d6717 (plain)
1
2
3
4
5
6
7
8
#include "Context.h"

void coroutine_trampoline(void * _context)
{
    struct coroutine_context * context = _context;

    context->entry_func(context->from, context);
}