From ce455481ab587ed37c1a68e55efec205979b9c89 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 9 Jul 2004 12:47:48 -0300 Subject: separation between io lib and os lib --- linit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'linit.c') diff --git a/linit.c b/linit.c index 0c483943..a50b894e 100644 --- a/linit.c +++ b/linit.c @@ -1,5 +1,5 @@ /* -** $Id: linit.c,v 1.6 2000/08/09 14:50:13 roberto Exp roberto $ +** $Id: linit.c,v 1.7 2004/07/09 14:29:29 roberto Exp roberto $ ** Initialization of libraries for lua.c ** See Copyright Notice in lua.h */ @@ -18,6 +18,7 @@ static const luaL_reg lualibs[] = { {"", luaopen_base}, {LUA_TABLIBNAME, luaopen_table}, {LUA_IOLIBNAME, luaopen_io}, + {LUA_OSLIBNAME, luaopen_os}, {LUA_STRLIBNAME, luaopen_string}, {LUA_MATHLIBNAME, luaopen_math}, {LUA_DBLIBNAME, luaopen_debug}, -- cgit v1.2.3-55-g6feb