diff options
-rw-r--r-- | lua.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.c,v 1.117 2003/03/07 13:21:31 roberto Exp roberto $ | 2 | ** $Id: lua.c,v 1.118 2003/03/11 12:24:34 roberto Exp roberto $ |
3 | ** Lua stand-alone interpreter | 3 | ** Lua stand-alone interpreter |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -73,6 +73,7 @@ static const luaL_reg lualibs[] = { | |||
73 | {"string", luaopen_string}, | 73 | {"string", luaopen_string}, |
74 | {"math", luaopen_math}, | 74 | {"math", luaopen_math}, |
75 | {"debug", luaopen_debug}, | 75 | {"debug", luaopen_debug}, |
76 | {"loadlib", luaopen_loadlib}, | ||
76 | /* add your libraries here */ | 77 | /* add your libraries here */ |
77 | LUA_EXTRALIBS | 78 | LUA_EXTRALIBS |
78 | {NULL, NULL} | 79 | {NULL, NULL} |