diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-07-01 13:16:40 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-07-01 13:16:40 -0300 |
commit | 3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee (patch) | |
tree | 472484d4d48fef9c7ecc143d1eb88f608a93ad4a /linit.c | |
parent | eb8499c8e03b96071b40b6659f72391f1c6a2a12 (diff) | |
download | lua-3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee.tar.gz lua-3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee.tar.bz2 lua-3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee.zip |
new module 'lbitlib.c' for bitwise operations
Diffstat (limited to 'linit.c')
-rw-r--r-- | linit.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: linit.c,v 1.17 2009/05/01 13:37:11 roberto Exp roberto $ | 2 | ** $Id: linit.c,v 1.18 2009/05/01 13:46:35 roberto Exp roberto $ |
3 | ** Initialization of libraries for lua.c | 3 | ** Initialization of libraries for lua.c |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -24,6 +24,7 @@ static const luaL_Reg loadedlibs[] = { | |||
24 | {LUA_IOLIBNAME, luaopen_io}, | 24 | {LUA_IOLIBNAME, luaopen_io}, |
25 | {LUA_OSLIBNAME, luaopen_os}, | 25 | {LUA_OSLIBNAME, luaopen_os}, |
26 | {LUA_STRLIBNAME, luaopen_string}, | 26 | {LUA_STRLIBNAME, luaopen_string}, |
27 | {LUA_BITLIBNAME, luaopen_bit}, | ||
27 | {LUA_MATHLIBNAME, luaopen_math}, | 28 | {LUA_MATHLIBNAME, luaopen_math}, |
28 | {NULL, NULL} | 29 | {NULL, NULL} |
29 | }; | 30 | }; |