#include #include "../../../context.h" extern int length; extern int split; extern int* array_ptr; __code createArray(__code next(struct Array* output, ...)) { struct Array* output = *O_output; output->prefix = length/split; output->array = array_ptr; output->size = length; *O_output = output; printf("created Array\n"); goto meta(context, context->next); } __code createArray_stub(struct Context* context) { Array** O_output = (struct Array **)&context->data[context->odg]; goto createArray(context, context->next, O_output); }