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 /lualib.h | |
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 'lualib.h')
-rw-r--r-- | lualib.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.30 2004/05/28 18:35:05 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.31 2004/07/09 14:29:29 roberto Exp roberto $ |
3 | ** Lua standard libraries | 3 | ** Lua standard libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -22,9 +22,11 @@ LUALIB_API int luaopen_base (lua_State *L); | |||
22 | LUALIB_API int luaopen_table (lua_State *L); | 22 | LUALIB_API int luaopen_table (lua_State *L); |
23 | 23 | ||
24 | #define LUA_IOLIBNAME "io" | 24 | #define LUA_IOLIBNAME "io" |
25 | #define LUA_OSLIBNAME "os" | ||
26 | LUALIB_API int luaopen_io (lua_State *L); | 25 | LUALIB_API int luaopen_io (lua_State *L); |
27 | 26 | ||
27 | #define LUA_OSLIBNAME "os" | ||
28 | LUALIB_API int luaopen_os (lua_State *L); | ||
29 | |||
28 | #define LUA_STRLIBNAME "string" | 30 | #define LUA_STRLIBNAME "string" |
29 | LUALIB_API int luaopen_string (lua_State *L); | 31 | LUALIB_API int luaopen_string (lua_State *L); |
30 | 32 | ||