diff options
Diffstat (limited to 'linit.c')
-rw-r--r-- | linit.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: linit.c,v 1.10 2005/03/08 13:37:55 roberto Exp roberto $ | 2 | ** $Id: linit.c,v 1.11 2005/04/13 17:24:20 roberto Exp roberto $ |
3 | ** Initialization of libraries for lua.c | 3 | ** Initialization of libraries for lua.c |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -22,7 +22,7 @@ static const luaL_reg lualibs[] = { | |||
22 | {LUA_STRLIBNAME, luaopen_string}, | 22 | {LUA_STRLIBNAME, luaopen_string}, |
23 | {LUA_MATHLIBNAME, luaopen_math}, | 23 | {LUA_MATHLIBNAME, luaopen_math}, |
24 | {LUA_DBLIBNAME, luaopen_debug}, | 24 | {LUA_DBLIBNAME, luaopen_debug}, |
25 | {LUA_LOADLIBNAME, luaopen_loadlib}, | 25 | {LUA_LOADLIBNAME, luaopen_package}, |
26 | {NULL, NULL} | 26 | {NULL, NULL} |
27 | }; | 27 | }; |
28 | 28 | ||