view src/include/context.h @ 477:c3202635c20a

fix Stack.agda
author ryokka
date Thu, 28 Dec 2017 15:52:01 +0900
parents a765eb7f3b7c
children
line wrap: on
line source

typedef struct Context_st {
    void* ds;
    void* mds;
    void* ds_heap;
    void* mds_heap;
    __code (*next)();
    void* head;
} Context;