From 034de1fe73c24dcb75658b4c9ab16dd012ba3057 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 11 Mar 2003 09:24:34 -0300 Subject: new names for functions that open C libraries --- lualib.h | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index 1bb25c00..d393b66d 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.24 2002/06/18 17:42:52 roberto Exp roberto $ +** $Id: lualib.h,v 1.25 2002/07/09 18:49:13 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -17,23 +17,23 @@ #define LUA_COLIBNAME "coroutine" -LUALIB_API int lua_baselibopen (lua_State *L); +LUALIB_API int luaopen_base (lua_State *L); #define LUA_TABLIBNAME "table" -LUALIB_API int lua_tablibopen (lua_State *L); +LUALIB_API int luaopen_table (lua_State *L); #define LUA_IOLIBNAME "io" #define LUA_OSLIBNAME "os" -LUALIB_API int lua_iolibopen (lua_State *L); +LUALIB_API int luaopen_io (lua_State *L); #define LUA_STRLIBNAME "string" -LUALIB_API int lua_strlibopen (lua_State *L); +LUALIB_API int luaopen_string (lua_State *L); #define LUA_MATHLIBNAME "math" -LUALIB_API int lua_mathlibopen (lua_State *L); +LUALIB_API int luaopen_math (lua_State *L); #define LUA_DBLIBNAME "debug" -LUALIB_API int lua_dblibopen (lua_State *L); +LUALIB_API int luaopen_debug (lua_State *L); /* to help testing the libraries */ @@ -41,4 +41,13 @@ LUALIB_API int lua_dblibopen (lua_State *L); #define lua_assert(c) /* empty */ #endif + +/* compatibility code */ +#define lua_baselibopen luaopen_base +#define lua_tablibopen luaopen_table +#define lua_iolibopen luaopen_io +#define lua_strlibopen luaopen_string +#define lua_mathlibopen luaopen_math +#define lua_dblibopen luaopen_debug + #endif -- cgit v1.2.3-55-g6feb