Mercurial > hg > Members > Moririn
view src/include/allocate.h @ 195:119c035e0e36
replace Array and Stack for array and stack
author | ikkun |
---|---|
date | Fri, 16 Dec 2016 23:27:14 +0900 |
parents | 368306e1bfed |
children |
line wrap: on
line source
__code allocate(); __code meta_allocate(); __code allocate(struct Context* context) { goto meta_allocate(context); } __code meta_allocate(struct Context* context) { context->data[++context->dataNum] = context->heap; context->heap += context->data[0]->allocate.size; goto meta(context, context->next[--context->current]); }