aboutsummaryrefslogtreecommitdiff
path: root/src/len.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/len.c')
-rw-r--r--src/len.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/len.c b/src/len.c
deleted file mode 100644
index 15e84ac..0000000
--- a/src/len.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "lua.h"
-#include "table.h"
-
-int luaopen_llib(lua_State* L) {
- lua_newtable(L);
-
- //create <lib>.array functions
- lua_newtable(L);
- luaL_register(L, NULL, array_function_list);
- lua_setfield(L, -2, "array");
-
- //make llib global
- lua_setglobal(L, "llib");
- return 1;
-}