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 --- lualib.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index 6efe0e2d..24a3c7bf 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.30 2004/05/28 18:35:05 roberto Exp roberto $ +** $Id: lualib.h,v 1.31 2004/07/09 14:29:29 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -22,9 +22,11 @@ LUALIB_API int luaopen_base (lua_State *L); LUALIB_API int luaopen_table (lua_State *L); #define LUA_IOLIBNAME "io" -#define LUA_OSLIBNAME "os" LUALIB_API int luaopen_io (lua_State *L); +#define LUA_OSLIBNAME "os" +LUALIB_API int luaopen_os (lua_State *L); + #define LUA_STRLIBNAME "string" LUALIB_API int luaopen_string (lua_State *L); -- cgit v1.2.3-55-g6feb