From f61ceee70822259725a335ccaaa323416296a6c1 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 2 Apr 2014 13:44:42 -0300 Subject: LUAI_FUNC is being used only in header files --- lstring.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstring.c') diff --git a/lstring.c b/lstring.c index 32448ebf..f666ebf9 100644 --- a/lstring.c +++ b/lstring.c @@ -1,5 +1,5 @@ /* -** $Id: lstring.c,v 2.37 2014/02/19 13:51:09 roberto Exp roberto $ +** $Id: lstring.c,v 2.38 2014/03/19 18:51:42 roberto Exp roberto $ ** String table (keeps all strings handled by Lua) ** See Copyright Notice in lua.h */ @@ -102,7 +102,7 @@ static TString *createstrobj (lua_State *L, const char *str, size_t l, } -LUAI_FUNC void luaS_remove (lua_State *L, TString *ts) { +void luaS_remove (lua_State *L, TString *ts) { stringtable *tb = &G(L)->strt; TString **p = &tb->hash[lmod(ts->tsv.hash, tb->size)]; while (*p != ts) /* find previous element */ -- cgit v1.2.3-55-g6feb