From 3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 1 Jul 2009 13:16:40 -0300 Subject: new module 'lbitlib.c' for bitwise operations --- linit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'linit.c') diff --git a/linit.c b/linit.c index 7eb3cfbd..63dc8f9d 100644 --- a/linit.c +++ b/linit.c @@ -1,5 +1,5 @@ /* -** $Id: linit.c,v 1.17 2009/05/01 13:37:11 roberto Exp roberto $ +** $Id: linit.c,v 1.18 2009/05/01 13:46:35 roberto Exp roberto $ ** Initialization of libraries for lua.c ** See Copyright Notice in lua.h */ @@ -24,6 +24,7 @@ static const luaL_Reg loadedlibs[] = { {LUA_IOLIBNAME, luaopen_io}, {LUA_OSLIBNAME, luaopen_os}, {LUA_STRLIBNAME, luaopen_string}, + {LUA_BITLIBNAME, luaopen_bit}, {LUA_MATHLIBNAME, luaopen_math}, {NULL, NULL} }; -- cgit v1.2.3-55-g6feb