From 21feabdded6c47be15040cd969f61ec416fc2e00 Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Mon, 11 Mar 2024 12:13:44 +1300 Subject: [PATCH] callisto: remove standard lualibs from loadedlibs[] --- callisto.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/callisto.c b/callisto.c index ed97f68..6c24e47 100644 --- a/callisto.c +++ b/callisto.c @@ -14,8 +14,6 @@ static const luaL_Reg loadedlibs[] = { {CALLISTO_ENVLIBNAME, luaopen_environ}, {CALLISTO_FSYSLIBNAME, luaopen_fs}, {CALLISTO_JSONLIBNAME, luaopen_json}, - {LUA_MATHLIBNAME, luaopen_math}, - {LUA_OSLIBNAME, luaopen_os}, {CALLISTO_PROCLIBNAME, luaopen_process}, {NULL, NULL} };