mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-15 06:30:49 +00:00
8 lines
189 B
C
8 lines
189 B
C
#include "c.h"
|
|
extern Interface nullIR;
|
|
extern Interface bytecodeIR;
|
|
Binding bindings[] = {
|
|
{ "null", &nullIR },
|
|
{ "bytecode", &bytecodeIR },
|
|
{ NULL, NULL },
|
|
};
|