From 2cbbf3933ac7aa82c788d388b64ad0df7a9d83f6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 27 Oct 2000 14:15:53 -0200 Subject: new macro LUALIB_API (so the lib can be a separate DLL) --- lstrlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstrlib.c') diff --git a/lstrlib.c b/lstrlib.c index a82f1b8f..6013de24 100644 --- a/lstrlib.c +++ b/lstrlib.c @@ -1,5 +1,5 @@ /* -** $Id: lstrlib.c,v 1.54 2000/10/05 12:14:08 roberto Exp roberto $ +** $Id: lstrlib.c,v 1.55 2000/10/20 16:39:03 roberto Exp roberto $ ** Standard library for string operations and pattern-matching ** See Copyright Notice in lua.h */ @@ -616,6 +616,6 @@ static const struct luaL_reg strlib[] = { /* ** Open string library */ -LUA_API void lua_strlibopen (lua_State *L) { +LUALIB_API void lua_strlibopen (lua_State *L) { luaL_openl(L, strlib); } -- cgit v1.2.3-55-g6feb