aboutsummaryrefslogtreecommitdiffstats
path: root/out/main.c
blob: 2573bad7a3f75539516b0abc575342ecf8cac470 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "../lua5/lauxlib.h"
#include "../lua5/lua.h"
#include "../lua5/lualib.h"
#include "./wasm_tables.h"
#include <inttypes.h>
#include <stdio.h>

#pragma weak main
int main(int argc, char **argv) {
  lua_State *ls = luaL_newstate();
  luaL_openlibs(ls);
  reg_tablegen_tables_wasm(ls);
}