From 3abe3da9fb9baf24e4e9e1cfb0212cce00d70fee Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 1 Jul 2009 13:16:40 -0300 Subject: new module 'lbitlib.c' for bitwise operations --- lualib.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index ed4ffe4a..bb4ea06f 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.36 2005/12/27 17:12:00 roberto Exp roberto $ +** $Id: lualib.h,v 1.37 2006/09/11 14:07:24 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -30,6 +30,9 @@ LUALIB_API int (luaopen_os) (lua_State *L); #define LUA_STRLIBNAME "string" LUALIB_API int (luaopen_string) (lua_State *L); +#define LUA_BITLIBNAME "bit" +LUALIB_API int (luaopen_bit) (lua_State *L); + #define LUA_MATHLIBNAME "math" LUALIB_API int (luaopen_math) (lua_State *L); -- cgit v1.2.3-55-g6feb