aboutsummaryrefslogtreecommitdiff
path: root/lbitlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lbitlib.c')
-rw-r--r--lbitlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbitlib.c b/lbitlib.c
index 4f715288..3aaec229 100644
--- a/lbitlib.c
+++ b/lbitlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: $ 2** $Id: lbitlib.c,v 1.1 2009/07/01 16:17:08 roberto Exp roberto $
3** Standard library for bitwise operations 3** Standard library for bitwise operations
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -117,7 +117,7 @@ static const luaL_Reg bitlib[] = {
117 117
118 118
119 119
120LUALIB_API int luaopen_bit (lua_State *L) { 120LUAMOD_API int luaopen_bit (lua_State *L) {
121 luaL_register(L, LUA_BITLIBNAME, bitlib); 121 luaL_register(L, LUA_BITLIBNAME, bitlib);
122 return 1; 122 return 1;
123} 123}