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 --- lbaselib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lbaselib.c') diff --git a/lbaselib.c b/lbaselib.c index 12df27b3..c4192670 100644 --- a/lbaselib.c +++ b/lbaselib.c @@ -1,5 +1,5 @@ /* -** $Id: lbaselib.c,v 1.125 2003/03/06 19:36:16 roberto Exp roberto $ +** $Id: lbaselib.c,v 1.126 2003/03/11 12:08:13 roberto Exp roberto $ ** Basic library ** See Copyright Notice in lua.h */ @@ -668,7 +668,7 @@ static void base_open (lua_State *L) { } -LUALIB_API int lua_baselibopen (lua_State *L) { +LUALIB_API int luaopen_base (lua_State *L) { base_open(L); luaL_openlib(L, LUA_COLIBNAME, co_funcs, 0); lua_newtable(L); -- cgit v1.2.3-55-g6feb