2014-12-22 12:35:05 +01:00
|
|
|
/*
|
2019-07-18 18:02:02 +02:00
|
|
|
** NodeMCU Lua 5.1 main initiator and comand interpreter
|
2014-12-22 12:35:05 +01:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lauxlib.h"
|
|
|
|
#include "lualib.h"
|
2020-04-27 02:13:38 +02:00
|
|
|
#include "llimits.h"
|
|
|
|
#define LUA_VERSION_51
|
2014-12-22 12:35:05 +01:00
|
|
|
#include "os_type.h"
|
2020-04-27 02:13:38 +02:00
|
|
|
#include "../lua53/lua.c"
|
2014-12-22 12:35:05 +01:00
|
|
|
|