From bd262d591f56a4c14be58c14c54aa929d0d3bf64 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 10 Jun 2010 18:30:26 -0300 Subject: 'coroutine' library separated from 'baselib' --- linit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'linit.c') diff --git a/linit.c b/linit.c index 2e9fb0b9..99c33e92 100644 --- a/linit.c +++ b/linit.c @@ -1,5 +1,5 @@ /* -** $Id: linit.c,v 1.24 2010/03/26 20:58:11 roberto Exp roberto $ +** $Id: linit.c,v 1.25 2010/05/20 12:57:59 roberto Exp roberto $ ** Initialization of libraries for lua.c and other clients ** See Copyright Notice in lua.h */ @@ -29,6 +29,7 @@ static const luaL_Reg loadedlibs[] = { {"_G", luaopen_base}, {LUA_LOADLIBNAME, luaopen_package}, + {LUA_COLIBNAME, luaopen_coroutine}, {LUA_TABLIBNAME, luaopen_table}, {LUA_IOLIBNAME, luaopen_io}, {LUA_OSLIBNAME, luaopen_os}, -- cgit v1.2.3-55-g6feb