aboutsummaryrefslogblamecommitdiffstats
path: root/out/main.c
blob: be01f97aee58e7954501147931b76edf7d067a0d (plain) (tree)
1
2
3
4
5
6
7
8


                            
                          
                     
                  

                 



                                  
 
#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(ls);
}