diff options
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 | ||