1
0
Fork 0
forked from len0rd/rockbox

Lua: add bitlib (makes bitwise operators possible)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21164 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2009-06-01 22:02:18 +00:00
parent c1d27d105c
commit 82eea9ed69
4 changed files with 129 additions and 0 deletions

View file

@ -35,6 +35,7 @@ static const luaL_Reg lualibs[] = {
{LUA_STRLIBNAME, luaopen_string},
{LUA_OSLIBNAME, luaopen_os},
{LUA_ROCKLIBNAME, luaopen_rock},
{LUA_BITLIBNAME, luaopen_bit},
{NULL, NULL}
};