diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-10-25 12:32:36 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-10-25 12:32:36 -0200 |
commit | 9e8e60dd5f2223aaabd8239b9152167a8b630b4a (patch) | |
tree | cc174d15101f342572befeadb0a3cf7aa1f66dbd /lualib.h | |
parent | d72ec210c73c9143288db06c06d35ec0077a8097 (diff) | |
download | lua-9e8e60dd5f2223aaabd8239b9152167a8b630b4a.tar.gz lua-9e8e60dd5f2223aaabd8239b9152167a8b630b4a.tar.bz2 lua-9e8e60dd5f2223aaabd8239b9152167a8b630b4a.zip |
bitlib renamed to 'bit32' + new function for arithmetic shift
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.39 2009/11/24 12:05:44 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.40 2010/06/10 21:29:47 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 | */ |
@@ -32,8 +32,8 @@ LUAMOD_API int (luaopen_os) (lua_State *L); | |||
32 | #define LUA_STRLIBNAME "string" | 32 | #define LUA_STRLIBNAME "string" |
33 | LUAMOD_API int (luaopen_string) (lua_State *L); | 33 | LUAMOD_API int (luaopen_string) (lua_State *L); |
34 | 34 | ||
35 | #define LUA_BITLIBNAME "bit" | 35 | #define LUA_BITLIBNAME "bit32" |
36 | LUAMOD_API int (luaopen_bit) (lua_State *L); | 36 | LUAMOD_API int (luaopen_bit32) (lua_State *L); |
37 | 37 | ||
38 | #define LUA_MATHLIBNAME "math" | 38 | #define LUA_MATHLIBNAME "math" |
39 | LUAMOD_API int (luaopen_math) (lua_State *L); | 39 | LUAMOD_API int (luaopen_math) (lua_State *L); |