lilium-voyager/code/tools/lcc/src/bind.c

8 lines
189 B
C

#include "c.h"
extern Interface nullIR;
extern Interface bytecodeIR;
Binding bindings[] = {
{ "null", &nullIR },
{ "bytecode", &bytecodeIR },
{ NULL, NULL },
};