From b4c18248247d84a3acffc020b09d1637dd2990c6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 19 Nov 2009 17:04:58 -0200 Subject: 'luaV_arith' must be marked 'LUAI_FUNC' (as all non-static functions) --- lvm.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lvm.h b/lvm.h index 476bf506..22d37e50 100644 --- a/lvm.h +++ b/lvm.h @@ -1,5 +1,5 @@ /* -** $Id: lvm.h,v 2.11 2009/06/17 17:51:07 roberto Exp roberto $ +** $Id: lvm.h,v 2.12 2009/11/06 17:05:34 roberto Exp roberto $ ** Lua virtual machine ** See Copyright Notice in lua.h */ @@ -35,7 +35,7 @@ LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, LUAI_FUNC void luaV_finishOp (lua_State *L); LUAI_FUNC void luaV_execute (lua_State *L); LUAI_FUNC void luaV_concat (lua_State *L, int total); -void luaV_arith (lua_State *L, StkId ra, const TValue *rb, - const TValue *rc, TMS op); +LUAI_FUNC void luaV_arith (lua_State *L, StkId ra, const TValue *rb, + const TValue *rc, TMS op); #endif -- cgit v1.2.3-55-g6feb