diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-06-01 22:02:18 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-06-01 22:02:18 +0000 |
| commit | 82eea9ed69886a4eaf41a1124b292635ca60fe9a (patch) | |
| tree | db6bb8849b433a8440770015de490327cbfb4195 /apps/plugins/lua/rocklua.c | |
| parent | c1d27d105c3333b5df67c97d88885efa2a49bc9a (diff) | |
| download | rockbox-82eea9ed69886a4eaf41a1124b292635ca60fe9a.zip rockbox-82eea9ed69886a4eaf41a1124b292635ca60fe9a.tar.gz rockbox-82eea9ed69886a4eaf41a1124b292635ca60fe9a.tar.bz2 rockbox-82eea9ed69886a4eaf41a1124b292635ca60fe9a.tar.xz | |
Lua: add bitlib (makes bitwise operators possible)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21164 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lua/rocklua.c')
| -rw-r--r-- | apps/plugins/lua/rocklua.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/lua/rocklua.c b/apps/plugins/lua/rocklua.c index 1162c02..98ffea8 100644 --- a/apps/plugins/lua/rocklua.c +++ b/apps/plugins/lua/rocklua.c @@ -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} }; |