mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-30 06:37:57 +03:00
9 lines
189 B
C
9 lines
189 B
C
![]() |
#include "c.h"
|
||
|
extern Interface nullIR;
|
||
|
extern Interface bytecodeIR;
|
||
|
Binding bindings[] = {
|
||
|
{ "null", &nullIR },
|
||
|
{ "bytecode", &bytecodeIR },
|
||
|
{ NULL, NULL },
|
||
|
};
|