diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-07-09 12:47:48 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-07-09 12:47:48 -0300 |
commit | ce455481ab587ed37c1a68e55efec205979b9c89 (patch) | |
tree | 079ff0ba6f8634f5a53ba8a1061795709d7c8ee6 /linit.c | |
parent | 85f1d70e68efca3fba475e4a477457a54b7cedcc (diff) | |
download | lua-ce455481ab587ed37c1a68e55efec205979b9c89.tar.gz lua-ce455481ab587ed37c1a68e55efec205979b9c89.tar.bz2 lua-ce455481ab587ed37c1a68e55efec205979b9c89.zip |
separation between io lib and os lib
Diffstat (limited to 'linit.c')
-rw-r--r-- | linit.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: linit.c,v 1.6 2000/08/09 14:50:13 roberto Exp roberto $ | 2 | ** $Id: linit.c,v 1.7 2004/07/09 14:29:29 roberto Exp roberto $ |
3 | ** Initialization of libraries for lua.c | 3 | ** Initialization of libraries for lua.c |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -18,6 +18,7 @@ static const luaL_reg lualibs[] = { | |||
18 | {"", luaopen_base}, | 18 | {"", luaopen_base}, |
19 | {LUA_TABLIBNAME, luaopen_table}, | 19 | {LUA_TABLIBNAME, luaopen_table}, |
20 | {LUA_IOLIBNAME, luaopen_io}, | 20 | {LUA_IOLIBNAME, luaopen_io}, |
21 | {LUA_OSLIBNAME, luaopen_os}, | ||
21 | {LUA_STRLIBNAME, luaopen_string}, | 22 | {LUA_STRLIBNAME, luaopen_string}, |
22 | {LUA_MATHLIBNAME, luaopen_math}, | 23 | {LUA_MATHLIBNAME, luaopen_math}, |
23 | {LUA_DBLIBNAME, luaopen_debug}, | 24 | {LUA_DBLIBNAME, luaopen_debug}, |