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 /lualib.h | |
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 'lualib.h')
-rw-r--r-- | lualib.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.36 2005/12/27 17:12:00 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.37 2006/09/11 14:07:24 roberto Exp roberto $ |
3 | ** Lua standard libraries | 3 | ** Lua standard libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -30,6 +30,9 @@ LUALIB_API int (luaopen_os) (lua_State *L); | |||
30 | #define LUA_STRLIBNAME "string" | 30 | #define LUA_STRLIBNAME "string" |
31 | LUALIB_API int (luaopen_string) (lua_State *L); | 31 | LUALIB_API int (luaopen_string) (lua_State *L); |
32 | 32 | ||
33 | #define LUA_BITLIBNAME "bit" | ||
34 | LUALIB_API int (luaopen_bit) (lua_State *L); | ||
35 | |||
33 | #define LUA_MATHLIBNAME "math" | 36 | #define LUA_MATHLIBNAME "math" |
34 | LUALIB_API int (luaopen_math) (lua_State *L); | 37 | LUALIB_API int (luaopen_math) (lua_State *L); |
35 | 38 | ||