commit 4734e2de0524cc1896fb8605b9c81c195383eb25
parent 7ea180af6eea4d3ab0a9afe03836e53e0b3e5cde
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Mon, 17 Mar 2003 10:01:26 -0300
`loadlib' now an official library
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lua.c b/lua.c
@@ -1,5 +1,5 @@
/*
-** $Id: lua.c,v 1.117 2003/03/07 13:21:31 roberto Exp roberto $
+** $Id: lua.c,v 1.118 2003/03/11 12:24:34 roberto Exp roberto $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
@@ -73,6 +73,7 @@ static const luaL_reg lualibs[] = {
{"string", luaopen_string},
{"math", luaopen_math},
{"debug", luaopen_debug},
+ {"loadlib", luaopen_loadlib},
/* add your libraries here */
LUA_EXTRALIBS
{NULL, NULL}