From a6f465f55802989c1656d1a3b030c315c8ef2690 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 24 Nov 2009 10:05:44 -0200 Subject: new mark LUAMOD_API for all luaopen_* functions --- lbaselib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lbaselib.c') diff --git a/lbaselib.c b/lbaselib.c index b639222b..16b58cf5 100644 --- a/lbaselib.c +++ b/lbaselib.c @@ -1,5 +1,5 @@ /* -** $Id: lbaselib.c,v 1.224 2009/11/16 15:51:03 roberto Exp roberto $ +** $Id: lbaselib.c,v 1.225 2009/11/19 16:26:29 roberto Exp roberto $ ** Basic library ** See Copyright Notice in lua.h */ @@ -716,7 +716,7 @@ static void base_open (lua_State *L) { } -LUALIB_API int luaopen_base (lua_State *L) { +LUAMOD_API int luaopen_base (lua_State *L) { base_open(L); luaL_register(L, LUA_COLIBNAME, co_funcs); return 2; -- cgit v1.2.3-55-g6feb