summaryrefslogtreecommitdiff
path: root/src/tools/lcc/src/bind.c
blob: bc7b9830fe9c74228a8a14c9e0f00ef3609b1be0 (plain)
1
2
3
4
5
6
7
8
#include "c.h"
extern Interface nullIR;
extern Interface bytecodeIR;
Binding bindings[] = {
	{ "null",          &nullIR },
	{ "bytecode",      &bytecodeIR },
	{ NULL,            NULL },
};