mirror of https://github.com/rusefi/lua.git
don't auto load os lib
This commit is contained in:
parent
f1cf472e73
commit
108bbe3cad
3
linit.c
3
linit.c
|
@ -45,7 +45,8 @@ static const luaL_Reg loadedlibs[] = {
|
|||
{LUA_COLIBNAME, luaopen_coroutine},
|
||||
{LUA_TABLIBNAME, luaopen_table},
|
||||
{LUA_IOLIBNAME, luaopen_io},
|
||||
{LUA_OSLIBNAME, luaopen_os},
|
||||
// RUSEFI: don't auto load OS lib
|
||||
// {LUA_OSLIBNAME, luaopen_os},
|
||||
{LUA_STRLIBNAME, luaopen_string},
|
||||
{LUA_MATHLIBNAME, luaopen_math},
|
||||
{LUA_UTF8LIBNAME, luaopen_utf8},
|
||||
|
|
Loading…
Reference in New Issue