aboutsummaryrefslogtreecommitdiff
path: root/linit.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-06-10 18:30:26 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-06-10 18:30:26 -0300
commitbd262d591f56a4c14be58c14c54aa929d0d3bf64 (patch)
tree753b3b57a04c2bdd2fcae53447e6b54bcb2ae23e /linit.c
parent0d116c3adab7bf831ecb8adec0cedfe9a807476e (diff)
downloadlua-bd262d591f56a4c14be58c14c54aa929d0d3bf64.tar.gz
lua-bd262d591f56a4c14be58c14c54aa929d0d3bf64.tar.bz2
lua-bd262d591f56a4c14be58c14c54aa929d0d3bf64.zip
'coroutine' library separated from 'baselib'
Diffstat (limited to 'linit.c')
-rw-r--r--linit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/linit.c b/linit.c
index 2e9fb0b9..99c33e92 100644
--- a/linit.c
+++ b/linit.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: linit.c,v 1.24 2010/03/26 20:58:11 roberto Exp roberto $ 2** $Id: linit.c,v 1.25 2010/05/20 12:57:59 roberto Exp roberto $
3** Initialization of libraries for lua.c and other clients 3** Initialization of libraries for lua.c and other clients
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -29,6 +29,7 @@
29static const luaL_Reg loadedlibs[] = { 29static const luaL_Reg loadedlibs[] = {
30 {"_G", luaopen_base}, 30 {"_G", luaopen_base},
31 {LUA_LOADLIBNAME, luaopen_package}, 31 {LUA_LOADLIBNAME, luaopen_package},
32 {LUA_COLIBNAME, luaopen_coroutine},
32 {LUA_TABLIBNAME, luaopen_table}, 33 {LUA_TABLIBNAME, luaopen_table},
33 {LUA_IOLIBNAME, luaopen_io}, 34 {LUA_IOLIBNAME, luaopen_io},
34 {LUA_OSLIBNAME, luaopen_os}, 35 {LUA_OSLIBNAME, luaopen_os},