view src/llrb/origin_cs.c @ 270:b6ed4b2a5d9d

fix CMakeList
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 30 Jan 2017 11:16:17 +0900
parents 368306e1bfed
children
line wrap: on
line source

#include <stdlib.h>
#include "llrbContext.h"

__code meta(struct Context* context, enum Code next) {
    goto (context->code[next])(context);
}

__code start_code(struct Context* context, enum Code next) {
    goto meta(context, next);
}

__code exit_code(struct Context* context) {
    free(context->code);
    free(context->data);
    free(context->heapStart);
    goto exit(0);
}